class Boolean
A boolean
record that may be updated atomically.
<init> |
Boolean(store: Store, recid: Long) |
compareAndSet |
fun compareAndSet(expect: Boolean, update: Boolean): Boolean Atomically sets the value to the given updated value if the current value |
get |
fun get(): Boolean Returns the current value. |
getAndSet |
fun getAndSet(newValue: Boolean): Boolean Atomically sets to the given value and returns the previous value. |
getRecid |
fun getRecid(): Long
|
set |
fun set(newValue: Boolean): Unit Unconditionally sets to the given value. |
toString |
fun toString(): String Returns the String representation of the current value. |