Uses of Interface
com.tangosol.util.function.Remote.Consumer
Packages that use Remote.Consumer
Package
Description
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.Consumer in com.tangosol.util.function
Methods in com.tangosol.util.function that return Remote.ConsumerModifier and TypeMethodDescriptiondefault Remote.Consumer
<T> Remote.Consumer.andThen
(Remote.Consumer<? super T> after) Returns a composedConsumer
that performs, in sequence, this operation followed by theafter
operation.static <T> Remote.Consumer
<T> Remote.consumer
(Remote.Consumer<T> consumer) Capture serializable Consumer.Methods in com.tangosol.util.function with parameters of type Remote.ConsumerModifier and TypeMethodDescriptiondefault Remote.Consumer
<T> Remote.Consumer.andThen
(Remote.Consumer<? super T> after) Returns a composedConsumer
that performs, in sequence, this operation followed by theafter
operation.static <T> Remote.Consumer
<T> Remote.consumer
(Remote.Consumer<T> consumer) Capture serializable Consumer. -
Uses of Remote.Consumer in com.tangosol.util.stream
Methods in com.tangosol.util.stream with parameters of type Remote.ConsumerModifier and TypeMethodDescriptiondefault RemoteStream
<T> RemoteStream.peek
(Remote.Consumer<? super T> action) Returns a stream consisting of the elements of this stream, additionally performing the provided action on each element as elements are consumed from the resulting stream.