AtomicLongArray.GetAndUpdate(Int32, ILongUnaryOperator) Method

Definition

Atomically updates the element at index i with the results of applying the given function, returning the previous value.

[Android.Runtime.Register("getAndUpdate", "(ILjava/util/function/LongUnaryOperator;)J", "", ApiSince=24)]
public long GetAndUpdate (int i, Java.Util.Functions.ILongUnaryOperator? updateFunction);
[<Android.Runtime.Register("getAndUpdate", "(ILjava/util/function/LongUnaryOperator;)J", "", ApiSince=24)>]
member this.GetAndUpdate : int * Java.Util.Functions.ILongUnaryOperator -> int64

Parameters

i
Int32

the index

updateFunction
ILongUnaryOperator

a side-effect-free function

Returns

Int64

the previous value

Attributes

Remarks

Java documentation for java.util.concurrent.atomic.AtomicLongArray.getAndUpdate(int, java.util.function.LongUnaryOperator).

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