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