AtomicReference

class AtomicReference<T>(var value: T)(source)

Deprecated (with error)

Use kotlin.concurrent.atomics.AtomicReference instead.

Replace with

kotlin.concurrent.atomics.AtomicReference

An object reference that is always updated atomically.

Since Kotlin

1.3

Constructors

Link copied to clipboard
constructor(value: T)

Properties