Uses of Interface
com.tangosol.util.function.Remote.UnaryOperator
Packages that use Remote.UnaryOperator
Package
Description
A small toolkit of classes that support lock-free thread-safe programming on single variables.
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.UnaryOperatorModifier and TypeMethodDescriptionAsyncAtomicReference.getAndUpdate(Remote.UnaryOperator<V> updateFunction) Atomically updates the current value with the results of applying the given function, returning the previous value.AsyncLocalAtomicReference.getAndUpdate(Remote.UnaryOperator<V> updateFunction) AsyncRemoteAtomicReference.getAndUpdate(Remote.UnaryOperator<V> updateFunction) AtomicReference.getAndUpdate(Remote.UnaryOperator<V> updateFunction) Atomically updates the current value with the results of applying the given function, returning the previous value.LocalAtomicReference.getAndUpdate(Remote.UnaryOperator<V> updateFunction) RemoteAtomicReference.getAndUpdate(Remote.UnaryOperator<V> updateFunction) AsyncAtomicReference.updateAndGet(Remote.UnaryOperator<V> updateFunction) Atomically updates the current value with the results of applying the given function, returning the updated value.AsyncLocalAtomicReference.updateAndGet(Remote.UnaryOperator<V> updateFunction) AsyncRemoteAtomicReference.updateAndGet(Remote.UnaryOperator<V> updateFunction) AtomicReference.updateAndGet(Remote.UnaryOperator<V> updateFunction) Atomically updates the current value with the results of applying the given function, returning the updated value.LocalAtomicReference.updateAndGet(Remote.UnaryOperator<V> updateFunction) RemoteAtomicReference.updateAndGet(Remote.UnaryOperator<V> updateFunction) -
Uses of Remote.UnaryOperator in com.tangosol.util.function
Methods in com.tangosol.util.function that return Remote.UnaryOperatorModifier and TypeMethodDescriptionstatic <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.UnaryOperatorModifier and TypeMethodDescriptionstatic <T> Remote.UnaryOperator<T> Remote.unaryOperator(Remote.UnaryOperator<T> operator) Capture serializable UnaryOperator.