Uses of Interface
com.tangosol.util.function.Remote.BiConsumer
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.BiConsumer in com.tangosol.util.function
Modifier and TypeMethodDescriptiondefault Remote.BiConsumer
<T, U> Remote.BiConsumer.andThen
(Remote.BiConsumer<? super T, ? super U> after) Returns a composedBiConsumer
that performs, in sequence, this operation followed by theafter
operation.static <T,
U> Remote.BiConsumer <T, U> Remote.biConsumer
(Remote.BiConsumer<T, U> biConsumer) Capture serializable BiConsumer.Modifier and TypeMethodDescriptiondefault Remote.BiConsumer
<T, U> Remote.BiConsumer.andThen
(Remote.BiConsumer<? super T, ? super U> after) Returns a composedBiConsumer
that performs, in sequence, this operation followed by theafter
operation.static <T,
U> Remote.BiConsumer <T, U> Remote.biConsumer
(Remote.BiConsumer<T, U> biConsumer) Capture serializable BiConsumer. -
Uses of Remote.BiConsumer in com.tangosol.util.stream
Modifier and TypeMethodDescriptiondefault <R> R
RemoteDoubleStream.collect
(Remote.Supplier<R> supplier, Remote.ObjDoubleConsumer<R> accumulator, Remote.BiConsumer<R, R> combiner) Performs a mutable reduction operation on the elements of this stream.default <R> R
RemoteIntStream.collect
(Remote.Supplier<R> supplier, Remote.ObjIntConsumer<R> accumulator, Remote.BiConsumer<R, R> combiner) Performs a mutable reduction operation on the elements of this stream.default <R> R
RemoteLongStream.collect
(Remote.Supplier<R> supplier, Remote.ObjLongConsumer<R> accumulator, Remote.BiConsumer<R, R> combiner) Performs a mutable reduction operation on the elements of this stream.default <R> R
RemoteStream.collect
(Remote.Supplier<R> supplier, Remote.BiConsumer<R, ? super T> accumulator, Remote.BiConsumer<R, R> combiner) Performs a mutable reduction operation on the elements of this stream.default <R> RemoteStream
<R> RemoteStream.mapMulti
(Remote.BiConsumer<? super T, ? super Consumer<R>> mapper) Returns a stream consisting of the results of replacing each element of this stream with multiple elements, specifically zero or more elements.default RemoteDoubleStream
RemoteStream.mapMultiToDouble
(Remote.BiConsumer<? super T, ? super DoubleConsumer> mapper) Returns aDoubleStream
consisting of the results of replacing each element of this stream with multiple elements, specifically zero or more elements.default RemoteIntStream
RemoteStream.mapMultiToInt
(Remote.BiConsumer<? super T, ? super IntConsumer> mapper) Returns anIntStream
consisting of the results of replacing each element of this stream with multiple elements, specifically zero or more elements.default RemoteLongStream
RemoteStream.mapMultiToLong
(Remote.BiConsumer<? super T, ? super LongConsumer> mapper) Returns aLongStream
consisting of the results of replacing each element of this stream with multiple elements, specifically zero or more elements.static <T,
A, R> RemoteCollector <T, A, R> RemoteCollector.of
(Remote.Supplier<A> supplier, Remote.BiConsumer<A, T> accumulator, Remote.BinaryOperator<A> combiner, Remote.Function<A, R> finisher, Collector.Characteristics... characteristics) Returns a newCollector
described by the givensupplier
,accumulator
,combiner
, andfinisher
functions.static <T,
R> RemoteCollector <T, R, R> RemoteCollector.of
(Remote.Supplier<R> supplier, Remote.BiConsumer<R, T> accumulator, Remote.BinaryOperator<R> combiner, Collector.Characteristics... characteristics) Returns a newCollector
described by the givensupplier
,accumulator
, andcombiner
functions.