What are some examples when you’d use LazyThreadSa...
# android
l
What are some examples when you’d use LazyThreadSafetyMode.PUBLICATION or NONE on Android?
s
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