Java.Util.Concurrent.Atomic.AtomicIntegerArray: Method Members

The methods of Java.Util.Concurrent.Atomic.AtomicIntegerArray are listed below. For a list of all members, see the AtomicIntegerArray Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

AddAndGet(int, int) : int
Atomically adds the given value to the element at index i.
CompareAndSet(int, int, int) : bool
Atomically sets the element at position i to the given updated value if the current value == the expected value.
DecrementAndGet(int) : int
Atomically decrements by one the element at index i.
Get(int) : int
Gets the current value at position i.
GetAndAdd(int, int) : int
Atomically adds the given value to the element at index i.
GetAndDecrement(int) : int
Atomically decrements by one the element at index i.
GetAndIncrement(int) : int
Atomically increments by one the element at index i.
GetAndSet(int, int) : int
Atomically sets the element at position i to the given value and returns the old value.
IncrementAndGet(int) : int
Atomically increments by one the element at index i.
LazySet(int, int)
Eventually sets the element at position i to the given value.
Length() : int
Returns the length of the array.
Set(int, int)
Sets the element at position i to the given value.
WeakCompareAndSet(int, int, int) : bool
Atomically sets the element at position i to the given updated value if the current value == the expected value.