AtomicLong

class AtomicLong(value_: Long = 0)

Constructors

Link copied to clipboard
fun AtomicLong(value_: Long = 0)

Functions

Link copied to clipboard
fun addAndGet(delta: Int): Long
external fun addAndGet(delta: Long): Long

Increments the value by delta and returns the new value.

Link copied to clipboard
external fun compareAndSet(expected: Long, new: Long): Boolean

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

Link copied to clipboard
external fun compareAndSwap(expected: Long, new: Long): Long

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

Link copied to clipboard
fun decrement()

Decrements value by one.

Link copied to clipboard
fun increment()

Increments value by one.

Link copied to clipboard
open override fun toString(): String

Returns the string representation of this object.

Properties

Link copied to clipboard
var value: Long

The value being held by this class.