AtomicBoolean.WeakCompareAndSetRelease(Boolean, Boolean) Method

Definition

Possibly atomically sets the value to newValue if the current value == expectedValue, with memory effects as specified by VarHandle#weakCompareAndSetRelease.

[Android.Runtime.Register("weakCompareAndSetRelease", "(ZZ)Z", "", ApiSince=33)]
public bool WeakCompareAndSetRelease (bool expectedValue, bool newValue);
[<Android.Runtime.Register("weakCompareAndSetRelease", "(ZZ)Z", "", ApiSince=33)>]
member this.WeakCompareAndSetRelease : bool * bool -> bool

Parameters

expectedValue
Boolean

the expected value

newValue
Boolean

the new value

Returns

true if successful

Attributes

Remarks

Possibly atomically sets the value to newValue if the current value == expectedValue, with memory effects as specified by VarHandle#weakCompareAndSetRelease.

Added in 9.

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