AtomicLong.GetAndAccumulate(Int64, ILongBinaryOperator) Method

Definition

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

[Android.Runtime.Register("getAndAccumulate", "(JLjava/util/function/LongBinaryOperator;)J", "", ApiSince=24)]
public long GetAndAccumulate (long x, Java.Util.Functions.ILongBinaryOperator? accumulatorFunction);
[<Android.Runtime.Register("getAndAccumulate", "(JLjava/util/function/LongBinaryOperator;)J", "", ApiSince=24)>]
member this.GetAndAccumulate : int64 * Java.Util.Functions.ILongBinaryOperator -> int64

Parameters

x
Int64

the update value

accumulatorFunction
ILongBinaryOperator

a side-effect-free function of two arguments

Returns

Int64

the previous value

Attributes

Remarks

Java documentation for java.util.concurrent.atomic.AtomicLong.getAndAccumulate(long, java.util.function.LongBinaryOperator).

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