The members of Java.Util.Concurrent.Atomic.AtomicIntegerArray are listed below.
See Also: Inherited members from Java.Lang.Object
Creates a new AtomicIntegerArray of the given length, with all elements initially zero. | ||
Creates a new AtomicIntegerArray with the same length as, and all elements copied from, the given array. |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
[read-only] override | ThresholdClass | IntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
[read-only] override | ThresholdType | Type. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
AddAndGet(int, int)Atomically adds the given value to the element at index i. | ||
CompareAndSet(int, int, int)Atomically sets the element at position i to the given updated value if the current value == the expected value. | ||
DecrementAndGet(int)Atomically decrements by one the element at index i. | ||
Get(int)Gets the current value at position i. | ||
GetAndAdd(int, int)Atomically adds the given value to the element at index i. | ||
GetAndDecrement(int)Atomically decrements by one the element at index i. | ||
GetAndIncrement(int)Atomically increments by one the element at index i. | ||
GetAndSet(int, int)Atomically sets the element at position i to the given value and returns the old value. | ||
IncrementAndGet(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()Returns the length of the array. | ||
Set(int, int)Sets the element at position i to the given value. | ||
WeakCompareAndSet(int, int, int)Atomically sets the element at position i to the given updated value if the current value == the expected value. |