AtomicInteger.CompareAndExchange(Int32, Int32) Method

Definition

Atomically sets the value to newValue if the current value, referred to as the <em>witness value</em>, == expectedValue, with memory effects as specified by VarHandle#compareAndExchange.

[Android.Runtime.Register("compareAndExchange", "(II)I", "", ApiSince=33)]
public int CompareAndExchange (int expectedValue, int newValue);
[<Android.Runtime.Register("compareAndExchange", "(II)I", "", ApiSince=33)>]
member this.CompareAndExchange : int * int -> int

Parameters

expectedValue
Int32

the expected value

newValue
Int32

the new value

Returns

the witness value, which will be the same as the expected value if successful

Attributes

Remarks

Atomically sets the value to newValue if the current value, referred to as the <em>witness value</em>, == expectedValue, with memory effects as specified by VarHandle#compareAndExchange.

Added in 9.

Java documentation for java.util.concurrent.atomic.AtomicInteger.compareAndExchange(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