Uses of Interface
com.tangosol.util.function.Remote.UnaryOperator
-
Packages that use Remote.UnaryOperator Package Description com.oracle.coherence.concurrent.atomic A small toolkit of classes that support lock-free thread-safe programming on single variables.com.tangosol.util.function Contains Functional interfaces allowing remote execution of lambda expressions and method references. -
-
Uses of Remote.UnaryOperator in com.oracle.coherence.concurrent.atomic
Methods in com.oracle.coherence.concurrent.atomic with parameters of type Remote.UnaryOperator Modifier and Type Method Description CompletableFuture<V>
AsyncAtomicReference. getAndUpdate(Remote.UnaryOperator<V> updateFunction)
Atomically updates the current value with the results of applying the given function, returning the previous value.CompletableFuture<V>
AsyncLocalAtomicReference. getAndUpdate(Remote.UnaryOperator<V> updateFunction)
CompletableFuture<V>
AsyncRemoteAtomicReference. getAndUpdate(Remote.UnaryOperator<V> updateFunction)
V
AtomicReference. getAndUpdate(Remote.UnaryOperator<V> updateFunction)
Atomically updates the current value with the results of applying the given function, returning the previous value.V
LocalAtomicReference. getAndUpdate(Remote.UnaryOperator<V> updateFunction)
V
RemoteAtomicReference. getAndUpdate(Remote.UnaryOperator<V> updateFunction)
CompletableFuture<V>
AsyncAtomicReference. updateAndGet(Remote.UnaryOperator<V> updateFunction)
Atomically updates the current value with the results of applying the given function, returning the updated value.CompletableFuture<V>
AsyncLocalAtomicReference. updateAndGet(Remote.UnaryOperator<V> updateFunction)
CompletableFuture<V>
AsyncRemoteAtomicReference. updateAndGet(Remote.UnaryOperator<V> updateFunction)
V
AtomicReference. updateAndGet(Remote.UnaryOperator<V> updateFunction)
Atomically updates the current value with the results of applying the given function, returning the updated value.V
LocalAtomicReference. updateAndGet(Remote.UnaryOperator<V> updateFunction)
V
RemoteAtomicReference. updateAndGet(Remote.UnaryOperator<V> updateFunction)
-
Uses of Remote.UnaryOperator in com.tangosol.util.function
Methods in com.tangosol.util.function that return Remote.UnaryOperator Modifier and Type Method Description static <T> Remote.UnaryOperator<T>
Remote.UnaryOperator. identity()
Returns a unary operator that always returns its input argument.static <T> Remote.UnaryOperator<T>
Remote. unaryOperator(Remote.UnaryOperator<T> operator)
Capture serializable UnaryOperator.Methods in com.tangosol.util.function with parameters of type Remote.UnaryOperator Modifier and Type Method Description static <T> Remote.UnaryOperator<T>
Remote. unaryOperator(Remote.UnaryOperator<T> operator)
Capture serializable UnaryOperator.
-