AtomicReferenceArray.WeakCompareAndSetVolatile(Int32, Object, Object) Method

Definition

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

[Android.Runtime.Register("weakCompareAndSetVolatile", "(ILjava/lang/Object;Ljava/lang/Object;)Z", "", ApiSince=33)]
public bool WeakCompareAndSetVolatile (int i, Java.Lang.Object? expectedValue, Java.Lang.Object? newValue);
[<Android.Runtime.Register("weakCompareAndSetVolatile", "(ILjava/lang/Object;Ljava/lang/Object;)Z", "", ApiSince=33)>]
member this.WeakCompareAndSetVolatile : int * Java.Lang.Object * Java.Lang.Object -> bool

Parameters

i
Int32

the index

expectedValue
Object

the expected value

newValue
Object

the new value

Returns

true if successful

Attributes

Remarks

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

Added in 9.

Java documentation for java.util.concurrent.atomic.AtomicReferenceArray.weakCompareAndSetVolatile(int, E, E).

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