Uses of Interface
com.tangosol.util.function.Remote.IntUnaryOperator
-
Packages that use Remote.IntUnaryOperator 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.com.tangosol.util.stream Contains classes to support functional-style operations on remote streams of elements, such as map-reduce transformations on collections. -
-
Uses of Remote.IntUnaryOperator in com.oracle.coherence.concurrent.atomic
Methods in com.oracle.coherence.concurrent.atomic with parameters of type Remote.IntUnaryOperator Modifier and Type Method Description CompletableFuture<Integer>
AsyncAtomicInteger. getAndUpdate(Remote.IntUnaryOperator updateFunction)
Atomically updates the current value with the results of applying the given function, returning the previous value.CompletableFuture<Integer>
AsyncLocalAtomicInteger. getAndUpdate(Remote.IntUnaryOperator updateFunction)
CompletableFuture<Integer>
AsyncRemoteAtomicInteger. getAndUpdate(Remote.IntUnaryOperator updateFunction)
int
AtomicInteger. getAndUpdate(Remote.IntUnaryOperator updateFunction)
Atomically updates the current value with the results of applying the given function, returning the previous value.int
LocalAtomicInteger. getAndUpdate(Remote.IntUnaryOperator updateFunction)
int
RemoteAtomicInteger. getAndUpdate(Remote.IntUnaryOperator updateFunction)
CompletableFuture<Integer>
AsyncAtomicInteger. updateAndGet(Remote.IntUnaryOperator updateFunction)
Atomically updates the current value with the results of applying the given function, returning the updated value.CompletableFuture<Integer>
AsyncLocalAtomicInteger. updateAndGet(Remote.IntUnaryOperator updateFunction)
CompletableFuture<Integer>
AsyncRemoteAtomicInteger. updateAndGet(Remote.IntUnaryOperator updateFunction)
int
AtomicInteger. updateAndGet(Remote.IntUnaryOperator updateFunction)
Atomically updates the current value with the results of applying the given function, returning the updated value.int
LocalAtomicInteger. updateAndGet(Remote.IntUnaryOperator updateFunction)
int
RemoteAtomicInteger. updateAndGet(Remote.IntUnaryOperator updateFunction)
-
Uses of Remote.IntUnaryOperator in com.tangosol.util.function
Methods in com.tangosol.util.function that return Remote.IntUnaryOperator Modifier and Type Method Description default Remote.IntUnaryOperator
Remote.IntUnaryOperator. andThen(Remote.IntUnaryOperator after)
Returns a composed operator that first applies this operator to its input, and then applies theafter
operator to the result.default Remote.IntUnaryOperator
Remote.IntUnaryOperator. compose(Remote.IntUnaryOperator before)
Returns a composed operator that first applies thebefore
operator to its input, and then applies this operator to the result.static Remote.IntUnaryOperator
Remote.IntUnaryOperator. identity()
Returns a unary operator that always returns its input argument.static Remote.IntUnaryOperator
Remote. intUnaryOperator(Remote.IntUnaryOperator operator)
Capture serializable IntUnaryOperator.Methods in com.tangosol.util.function with parameters of type Remote.IntUnaryOperator Modifier and Type Method Description default Remote.IntUnaryOperator
Remote.IntUnaryOperator. andThen(Remote.IntUnaryOperator after)
Returns a composed operator that first applies this operator to its input, and then applies theafter
operator to the result.default Remote.IntUnaryOperator
Remote.IntUnaryOperator. compose(Remote.IntUnaryOperator before)
Returns a composed operator that first applies thebefore
operator to its input, and then applies this operator to the result.static Remote.IntUnaryOperator
Remote. intUnaryOperator(Remote.IntUnaryOperator operator)
Capture serializable IntUnaryOperator. -
Uses of Remote.IntUnaryOperator in com.tangosol.util.stream
Methods in com.tangosol.util.stream with parameters of type Remote.IntUnaryOperator Modifier and Type Method Description default RemoteIntStream
RemoteIntStream. map(Remote.IntUnaryOperator mapper)
Returns a stream consisting of the results of applying the given function to the elements of this stream.
-