Uses of Interface
com.tangosol.util.function.Remote.LongUnaryOperator
-
Packages that use Remote.LongUnaryOperator 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.LongUnaryOperator in com.oracle.coherence.concurrent.atomic
Methods in com.oracle.coherence.concurrent.atomic with parameters of type Remote.LongUnaryOperator Modifier and Type Method Description CompletableFuture<Long>
AsyncAtomicLong. getAndUpdate(Remote.LongUnaryOperator updateFunction)
Atomically updates the current value with the results of applying the given function, returning the previous value.CompletableFuture<Long>
AsyncLocalAtomicLong. getAndUpdate(Remote.LongUnaryOperator updateFunction)
CompletableFuture<Long>
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)
CompletableFuture<Long>
AsyncAtomicLong. updateAndGet(Remote.LongUnaryOperator updateFunction)
Atomically updates the current value with the results of applying the given function, returning the updated value.CompletableFuture<Long>
AsyncLocalAtomicLong. updateAndGet(Remote.LongUnaryOperator updateFunction)
CompletableFuture<Long>
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
Methods in com.tangosol.util.function that return Remote.LongUnaryOperator Modifier and Type Method Description default 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.Methods in com.tangosol.util.function with parameters of type Remote.LongUnaryOperator Modifier and Type Method Description default 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
Methods in com.tangosol.util.stream with parameters of type Remote.LongUnaryOperator Modifier and Type Method Description default RemoteLongStream
RemoteLongStream. map(Remote.LongUnaryOperator mapper)
Returns a stream consisting of the results of applying the given function to the elements of this stream.
-