Uses of Interface
com.tangosol.util.function.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
Modifier 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.Modifier 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
Modifier 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.