What are some examples when you’d use LazyThreadSafetyMode.PUBLICATION or NONE on Android?
s
Sam
10/16/2018, 3:42 PM
NONE is used if it doesn't need thread safety like variables accessed only in the context of main thread. It avoids the overhead associated with locking etc