compareAndSet

external fun compareAndSet(expected: Long, new: Long): Boolean

Compares value with expected and replaces it with new value if values matches.

Return

true if successful, false if state is unchanged

Parameters

expected

the expected value

new

the new value