AtomicReferenceArray.SetPlain(Int32, Object) Method

Definition

Sets the element at index i to newValue, with memory semantics of setting as if the variable was declared non-volatile and non-final.

[Android.Runtime.Register("setPlain", "(ILjava/lang/Object;)V", "", ApiSince=33)]
public void SetPlain (int i, Java.Lang.Object? newValue);
[<Android.Runtime.Register("setPlain", "(ILjava/lang/Object;)V", "", ApiSince=33)>]
member this.SetPlain : int * Java.Lang.Object -> unit

Parameters

i
Int32

the index

newValue
Object

the new value

Attributes

Remarks

Sets the element at index i to newValue, with memory semantics of setting as if the variable was declared non-volatile and non-final.

Added in 9.

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