AtomicIntegerArray.CompareAndSet(Int32, Int32, Int32) Method

Definition

Atomically sets the element at index i to newValue if the element's current value == expectedValue, with memory effects as specified by VarHandle#compareAndSet.

[Android.Runtime.Register("compareAndSet", "(III)Z", "")]
public bool CompareAndSet (int i, int expectedValue, int newValue);
[<Android.Runtime.Register("compareAndSet", "(III)Z", "")>]
member this.CompareAndSet : int * int * int -> bool

Parameters

i
Int32

the index

expectedValue
Int32

the expected value

newValue
Int32

the new value

Returns

true if successful. False return indicates that the actual value was not equal to the expected value.

Attributes

Remarks

Atomically sets the element at index i to newValue if the element's current value == expectedValue, with memory effects as specified by VarHandle#compareAndSet.

Java documentation for java.util.concurrent.atomic.AtomicIntegerArray.compareAndSet(int, int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to