Package | Description |
---|---|
java.util.concurrent.atomic |
A small toolkit of classes that support lock-free thread-safe
programming on single variables.
|
Modifier and Type | Method and Description |
---|---|
E |
AtomicReferenceArray.accumulateAndGet(int i,
E x,
BinaryOperator<E> accumulatorFunction)
Atomically updates the element at index
i with the
results of applying the given function to the current and
given values, returning the updated value. |
V |
AtomicReferenceFieldUpdater.accumulateAndGet(T obj,
V x,
BinaryOperator<V> accumulatorFunction)
Atomically updates the field of the given object managed by this
updater with the results of applying the given function to the
current and given values, returning the updated value.
|
V |
AtomicReference.accumulateAndGet(V x,
BinaryOperator<V> accumulatorFunction)
Atomically updates the current value with the results of
applying the given function to the current and given values,
returning the updated value.
|
E |
AtomicReferenceArray.getAndAccumulate(int i,
E x,
BinaryOperator<E> accumulatorFunction)
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. |
V |
AtomicReferenceFieldUpdater.getAndAccumulate(T obj,
V x,
BinaryOperator<V> accumulatorFunction)
Atomically updates the field of the given object managed by this
updater with the results of applying the given function to the
current and given values, returning the previous value.
|
V |
AtomicReference.getAndAccumulate(V x,
BinaryOperator<V> accumulatorFunction)
Atomically updates the current value with the results of
applying the given function to the current and given values,
returning the previous value.
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.
DRAFT internal-0