Uses of Interface
com.tangosol.util.function.Remote.LongUnaryOperator
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.LongUnaryOperator in com.oracle.coherence.concurrent.atomic
Modifier and TypeMethodDescriptionAsyncAtomicLong.getAndUpdate
(Remote.LongUnaryOperator updateFunction) Atomically updates the current value with the results of applying the given function, returning the previous value.AsyncLocalAtomicLong.getAndUpdate
(Remote.LongUnaryOperator updateFunction) AsyncRemoteAtomicLong.getAndUpdate
(Remote.LongUnaryOperator updateFunction) long
AtomicLong.getAndUpdate
(Remote.LongUnaryOperator updateFunction) Atomically updates the current value with the results of applying the given function, returning the previous value.long
LocalAtomicLong.getAndUpdate
(Remote.LongUnaryOperator updateFunction) long
RemoteAtomicLong.getAndUpdate
(Remote.LongUnaryOperator updateFunction) AsyncAtomicLong.updateAndGet
(Remote.LongUnaryOperator updateFunction) Atomically updates the current value with the results of applying the given function, returning the updated value.AsyncLocalAtomicLong.updateAndGet
(Remote.LongUnaryOperator updateFunction) AsyncRemoteAtomicLong.updateAndGet
(Remote.LongUnaryOperator updateFunction) long
AtomicLong.updateAndGet
(Remote.LongUnaryOperator updateFunction) Atomically updates the current value with the results of applying the given function, returning the updated value.long
LocalAtomicLong.updateAndGet
(Remote.LongUnaryOperator updateFunction) long
RemoteAtomicLong.updateAndGet
(Remote.LongUnaryOperator updateFunction) -
Uses of Remote.LongUnaryOperator in com.tangosol.util.function
Modifier and TypeMethodDescriptiondefault Remote.LongUnaryOperator
Remote.LongUnaryOperator.andThen
(Remote.LongUnaryOperator after) Returns a composed operator that first applies this operator to its input, and then applies theafter
operator to the result.default Remote.LongUnaryOperator
Remote.LongUnaryOperator.compose
(Remote.LongUnaryOperator before) Returns a composed operator that first applies thebefore
operator to its input, and then applies this operator to the result.static Remote.LongUnaryOperator
Remote.LongUnaryOperator.identity()
Returns a unary operator that always returns its input argument.static Remote.LongUnaryOperator
Remote.longUnaryOperator
(Remote.LongUnaryOperator operator) Capture serializable LongUnaryOperator.Modifier and TypeMethodDescriptiondefault Remote.LongUnaryOperator
Remote.LongUnaryOperator.andThen
(Remote.LongUnaryOperator after) Returns a composed operator that first applies this operator to its input, and then applies theafter
operator to the result.default Remote.LongUnaryOperator
Remote.LongUnaryOperator.compose
(Remote.LongUnaryOperator before) Returns a composed operator that first applies thebefore
operator to its input, and then applies this operator to the result.static Remote.LongUnaryOperator
Remote.longUnaryOperator
(Remote.LongUnaryOperator operator) Capture serializable LongUnaryOperator. -
Uses of Remote.LongUnaryOperator in com.tangosol.util.stream
Modifier and TypeMethodDescriptiondefault RemoteLongStream
RemoteLongStream.map
(Remote.LongUnaryOperator mapper) Returns a stream consisting of the results of applying the given function to the elements of this stream.