Atomic

class Atomic<V>(value: V)
open class Atomic<V>(value: V)
typealias Atomic = AtomicReference<V>

Functions

get
Link copied to clipboard
common
fun get(): V
set
Link copied to clipboard
common
fun set(value: V)

Inheritors

AtomicBoolean
Link copied to clipboard

Extensions

getValue
Link copied to clipboard
common
operator fun <T> Atomic<T>.getValue(thisRef: Any?, prop: KProperty<*>): T
setValue
Link copied to clipboard
common
operator fun <T> Atomic<T>.setValue(thisRef: Any?, prop: KProperty<*>, value: T)