Class AsyncLocalAtomicReference<V>
- Type Parameters:
V- the type of object referred to by this reference
- All Implemented Interfaces:
AsyncAtomicReference<V>
AsyncAtomicReference interface,
that simply wraps java.util.concurrent.atomic.AtomicReference
instance and returns an already completed future from each method.- Author:
- Aleks Seovic 2020.12.08
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructLocalAtomicReference<V>instance. -
Method Summary
Modifier and TypeMethodDescriptionaccumulateAndGet(V x, Remote.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.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.compareAndExchange(V expectedValue, V newValue) Atomically sets the value tonewValueif the current value, referred to as the witness value, is equal to theexpectedValue.compareAndSet(V expectedValue, V newValue) Atomically sets the value tonewValueif the current value is equal to theexpectedValue.get()Returns the current value.getAndAccumulate(V x, Remote.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.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.Atomically sets the value tonewValueand returns the old value.getAndUpdate(Remote.UnaryOperator<V> updateFunction) Atomically updates the current value with the results of applying the given function, returning the previous value.getAndUpdate(UnaryOperator<V> updateFunction) Atomically updates the current value with the results of applying the given function, returning the previous value.Sets the value tonewValue.toString()Returns the String representation of the current value.updateAndGet(Remote.UnaryOperator<V> updateFunction) Atomically updates the current value with the results of applying the given function, returning the updated value.updateAndGet(UnaryOperator<V> updateFunction) Atomically updates the current value with the results of applying the given function, returning the updated value.
-
Constructor Details
-
AsyncLocalAtomicReference
ConstructLocalAtomicReference<V>instance.- Parameters:
value- wrapped value
-
-
Method Details
-
get
Description copied from interface:AsyncAtomicReferenceReturns the current value.- Specified by:
getin interfaceAsyncAtomicReference<V>- Returns:
- the current value
-
set
Description copied from interface:AsyncAtomicReferenceSets the value tonewValue.- Specified by:
setin interfaceAsyncAtomicReference<V>- Parameters:
newValue- the new value- Returns:
- a
CompletableFuturethat can be used to determine whether the operation completed
-
getAndSet
Description copied from interface:AsyncAtomicReferenceAtomically sets the value tonewValueand returns the old value.- Specified by:
getAndSetin interfaceAsyncAtomicReference<V>- Parameters:
newValue- the new value- Returns:
- the previous value
-
compareAndSet
Description copied from interface:AsyncAtomicReferenceAtomically sets the value tonewValueif the current value is equal to theexpectedValue.- Specified by:
compareAndSetin interfaceAsyncAtomicReference<V>- Parameters:
expectedValue- the expected valuenewValue- the new value- Returns:
trueif successful. False return indicates that the actual value was not equal to the expected value.
-
getAndUpdate
Description copied from interface:AsyncAtomicReferenceAtomically updates the current value with the results of applying the given function, returning the previous value. The function should be side-effect-free, since it may be re-applied when attempted updates fail due to contention among threads.- Specified by:
getAndUpdatein interfaceAsyncAtomicReference<V>- Parameters:
updateFunction- a side-effect-free function- Returns:
- the previous value
-
getAndUpdate
Description copied from interface:AsyncAtomicReferenceAtomically updates the current value with the results of applying the given function, returning the previous value. The function should be side-effect-free, since it may be re-applied when attempted updates fail due to contention among threads.- Specified by:
getAndUpdatein interfaceAsyncAtomicReference<V>- Parameters:
updateFunction- a side-effect-free function- Returns:
- the previous value
-
updateAndGet
Description copied from interface:AsyncAtomicReferenceAtomically updates the current value with the results of applying the given function, 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.- Specified by:
updateAndGetin interfaceAsyncAtomicReference<V>- Parameters:
updateFunction- a side-effect-free function- Returns:
- the updated value
-
updateAndGet
Description copied from interface:AsyncAtomicReferenceAtomically updates the current value with the results of applying the given function, 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.- Specified by:
updateAndGetin interfaceAsyncAtomicReference<V>- Parameters:
updateFunction- a side-effect-free function- Returns:
- the updated value
-
getAndAccumulate
Description copied from interface:AsyncAtomicReferenceAtomically updates the current value with the results of applying the given function to the current and given values, returning the previous value.The function should beside-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.
- Specified by:
getAndAccumulatein interfaceAsyncAtomicReference<V>- Parameters:
x- the update valueaccumulatorFunction- a side-effect-free function of two arguments- Returns:
- the previous value
-
getAndAccumulate
Description copied from interface:AsyncAtomicReferenceAtomically updates the current value with the results of applying the given function to the current and given values, returning the previous value.The function should beside-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.
- Specified by:
getAndAccumulatein interfaceAsyncAtomicReference<V>- Parameters:
x- the update valueaccumulatorFunction- a side-effect-free function of two arguments- Returns:
- the previous value
-
accumulateAndGet
Description copied from interface:AsyncAtomicReferenceAtomically updates 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.
- Specified by:
accumulateAndGetin interfaceAsyncAtomicReference<V>- Parameters:
x- the update valueaccumulatorFunction- a side-effect-free function of two arguments- Returns:
- the updated value
-
accumulateAndGet
Description copied from interface:AsyncAtomicReferenceAtomically updates 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.
- Specified by:
accumulateAndGetin interfaceAsyncAtomicReference<V>- Parameters:
x- the update valueaccumulatorFunction- a side-effect-free function of two arguments- Returns:
- the updated value
-
compareAndExchange
Description copied from interface:AsyncAtomicReferenceAtomically sets the value tonewValueif the current value, referred to as the witness value, is equal to theexpectedValue.- Specified by:
compareAndExchangein interfaceAsyncAtomicReference<V>- Parameters:
expectedValue- the expected valuenewValue- the new value- Returns:
- the witness value, which will be the same as the expected value if successful
-
toString
Returns the String representation of the current value.
-