AtomicReference.AccumulateAndGet(Object, IBinaryOperator) Method

Definition

Atomically updates (with memory effects as specified by VarHandle#compareAndSet) the current value with the results of applying the given function to the current and given values, returning the updated value.

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

Parameters

x
Object

the update value

accumulatorFunction
IBinaryOperator

a side-effect-free function of two arguments

Returns

the updated value

Attributes

Remarks

Atomically updates (with memory effects as specified by VarHandle#compareAndSet) the current value with the results of applying the given function to the current and given values, returning the updated value. The function should be side-effect-free, since it may be re-applied when attempted updates fail due to contention among threads. The function is applied with the current value as its first argument, and the given update as the second argument.

Added in 1.8.

Java documentation for java.util.concurrent.atomic.AtomicReference.accumulateAndGet(V, java.util.function.BinaryOperator<V>).

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