kotlin.LazyThreadSafetyMode

LazyThreadSafetyMode

enum class LazyThreadSafetyMode

Specifies how a Lazy instance synchronizes access among multiple threads.

Enum Values

SYNCHRONIZED

Locks are used to ensure that only a single thread can initialize the Lazy instance.