store
Atomically stores the new value into this AtomicLong.
Since Kotlin
2.1Samples
import kotlin.concurrent.atomics.*
import kotlin.concurrent.thread
fun main() {
//sampleStart
val a = AtomicLong(7)
a.store(10)
println(a.load()) // 10
//sampleEnd
}
Atomically stores the new value into this AtomicLong.
Since Kotlin
2.1Atomically stores the new value into this AtomicLong.
Has the same memory effects as java.util.concurrent.atomic.AtomicLong.set.
Since Kotlin
2.1Atomically stores the new value into this AtomicLong.
Since Kotlin
2.1Atomically stores the new value into this AtomicLong.
Since Kotlin
2.1Atomically stores the new value into this AtomicLong.