Uses of Interface
com.tangosol.util.function.Remote.IntUnaryOperator
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.
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
Modifier and TypeMethodDescriptionAsyncAtomicInteger.getAndUpdate
(Remote.IntUnaryOperator updateFunction) Atomically updates the current value with the results of applying the given function, returning the previous value.AsyncLocalAtomicInteger.getAndUpdate
(Remote.IntUnaryOperator updateFunction) 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) AsyncAtomicInteger.updateAndGet
(Remote.IntUnaryOperator updateFunction) Atomically updates the current value with the results of applying the given function, returning the updated value.AsyncLocalAtomicInteger.updateAndGet
(Remote.IntUnaryOperator updateFunction) 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
Modifier and TypeMethodDescriptiondefault 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.Modifier and TypeMethodDescriptiondefault 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
Modifier and TypeMethodDescriptiondefault RemoteIntStream
RemoteIntStream.map
(Remote.IntUnaryOperator mapper) Returns a stream consisting of the results of applying the given function to the elements of this stream.