AtomicInteger.WeakCompareAndSet(Int32, Int32) Method

Definition

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

[Android.Runtime.Register("weakCompareAndSet", "(II)Z", "")]
public bool WeakCompareAndSet (int expectedValue, int newValue);
[<Android.Runtime.Register("weakCompareAndSet", "(II)Z", "")>]
member this.WeakCompareAndSet : int * int -> bool

Parameters

expectedValue
Int32

the expected value

newValue
Int32

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#weakCompareAndSetPlain.

This member is deprecated. This method has plain memory effects but the method name implies volatile memory effects (see methods such as #compareAndExchange and #compareAndSet). To avoid confusion over plain or volatile memory effects it is recommended that the method #weakCompareAndSetPlain be used instead.

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