AtomicIntArray
An IntArray in which elements are always updated atomically. For additional details about atomicity guarantees for reads and writes see kotlin.concurrent.Volatile .
Constructors
<init>
Creates a new AtomicIntArray of the given size , with all elements initialized to zero.
AtomicIntArray
(
size
:
Int
)
Properties
length
Returns the number of elements in the array.
val
length
:
Int
Functions
compareAndExchange
Atomically sets the value of the element at the given index to the new value if the current value equals the expected value and returns the old value of the element in any case.
fun
compareAndExchange
(
index
:
Int
,
expectedValue
:
Int
,
newValue
:
Int
)
:
Int
compareAndSet
Atomically sets the value of the element at the given index to the new value if the current value equals the expected value . Returns true if the operation was successful and false only if the current value of the element was not equal to the expected value.
fun
compareAndSet
(
index
:
Int
,
expectedValue
:
Int
,
newValue
:
Int
)
:
Boolean
decrementAndGet
Atomically decrements the element at the given index by one and returns the new value of the element.
fun
decrementAndGet
(
index
:
Int
)
:
Int
get
Atomically gets the value of the element at the given index .
operator
fun
get
(
index
:
Int
)
:
Int
getAndDecrement
Atomically decrements the element at the given index by one and returns the old value of the element.
fun
getAndDecrement
(
index
:
Int
)
:
Int
getAndIncrement
Atomically increments the element at the given index by one and returns the old value of the element.
fun
getAndIncrement
(
index
:
Int
)
:
Int
incrementAndGet
Atomically increments the element at the given index by one and returns the new value of the element.
fun
incrementAndGet
(
index
:
Int
)
:
Int