org.mapdb / Atomic / Integer / compareAndSet

compareAndSet

fun compareAndSet(expect: Int, update: Int): Boolean

Atomically sets the value to the given updated value if the current value == the expected value.

Parameters

expect - the expected value

update - the new value

Return
true if successful. False return indicates that the actual value was not equal to the expected value.