AtomicBoolean.CompareAndSet(Boolean, Boolean) Method

Definition

Atomically sets the value to newValue if the current value == expectedValue, with memory effects as specified by VarHandle#compareAndSet.

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

Parameters

expectedValue
Boolean

the expected value

newValue
Boolean

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 value to newValue if the current value == expectedValue, with memory effects as specified by VarHandle#compareAndSet.

Java documentation for java.util.concurrent.atomic.AtomicBoolean.compareAndSet(boolean, boolean).

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