AtomicIntegerArray.WeakCompareAndSetRelease(Int32, Int32, Int32) 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#weakCompareAndSetRelease.

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

Parameters

i
Int32

the index

expectedValue
Int32

the expected value

newValue
Int32

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

Added in 9.

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