AtomicReferenceArray.GetAndAccumulate(Int32, Object, IBinaryOperator) Method

Definition

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

[Android.Runtime.Register("getAndAccumulate", "(ILjava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;", "", ApiSince=24)]
public Java.Lang.Object? GetAndAccumulate (int i, Java.Lang.Object? x, Java.Util.Functions.IBinaryOperator? accumulatorFunction);
[<Android.Runtime.Register("getAndAccumulate", "(ILjava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;", "", ApiSince=24)>]
member this.GetAndAccumulate : int * Java.Lang.Object * Java.Util.Functions.IBinaryOperator -> Java.Lang.Object

Parameters

i
Int32

the index

x
Object

the update value

accumulatorFunction
IBinaryOperator

a side-effect-free function of two arguments

Returns

Object

the previous value

Attributes

Remarks

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