Uses of Interface
com.tangosol.util.function.Remote.IntUnaryOperator
Packages that use 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.atomicMethods in com.oracle.coherence.concurrent.atomic with parameters of type Remote.IntUnaryOperatorModifier 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) intAtomicInteger.getAndUpdate(Remote.IntUnaryOperator updateFunction) Atomically updates the current value with the results of applying the given function, returning the previous value.intLocalAtomicInteger.getAndUpdate(Remote.IntUnaryOperator updateFunction) intRemoteAtomicInteger.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) intAtomicInteger.updateAndGet(Remote.IntUnaryOperator updateFunction) Atomically updates the current value with the results of applying the given function, returning the updated value.intLocalAtomicInteger.updateAndGet(Remote.IntUnaryOperator updateFunction) intRemoteAtomicInteger.updateAndGet(Remote.IntUnaryOperator updateFunction) 
- 
Uses of Remote.IntUnaryOperator in com.tangosol.util.functionMethods in com.tangosol.util.function that return Remote.IntUnaryOperatorModifier and TypeMethodDescriptiondefault Remote.IntUnaryOperatorRemote.IntUnaryOperator.andThen(Remote.IntUnaryOperator after) Returns a composed operator that first applies this operator to its input, and then applies theafteroperator to the result.default Remote.IntUnaryOperatorRemote.IntUnaryOperator.compose(Remote.IntUnaryOperator before) Returns a composed operator that first applies thebeforeoperator to its input, and then applies this operator to the result.static Remote.IntUnaryOperatorRemote.IntUnaryOperator.identity()Returns a unary operator that always returns its input argument.static Remote.IntUnaryOperatorRemote.intUnaryOperator(Remote.IntUnaryOperator operator) Capture serializable IntUnaryOperator.Methods in com.tangosol.util.function with parameters of type Remote.IntUnaryOperatorModifier and TypeMethodDescriptiondefault Remote.IntUnaryOperatorRemote.IntUnaryOperator.andThen(Remote.IntUnaryOperator after) Returns a composed operator that first applies this operator to its input, and then applies theafteroperator to the result.default Remote.IntUnaryOperatorRemote.IntUnaryOperator.compose(Remote.IntUnaryOperator before) Returns a composed operator that first applies thebeforeoperator to its input, and then applies this operator to the result.static Remote.IntUnaryOperatorRemote.intUnaryOperator(Remote.IntUnaryOperator operator) Capture serializable IntUnaryOperator.
- 
Uses of Remote.IntUnaryOperator in com.tangosol.util.streamMethods in com.tangosol.util.stream with parameters of type Remote.IntUnaryOperatorModifier and TypeMethodDescriptiondefault RemoteIntStreamRemoteIntStream.map(Remote.IntUnaryOperator mapper) Returns a stream consisting of the results of applying the given function to the elements of this stream.