Uses of Interface
com.tangosol.util.function.Remote.BiConsumer
Packages that use 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
Methods in com.tangosol.util.function that return Remote.BiConsumerModifier 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.Methods in com.tangosol.util.function with parameters of type Remote.BiConsumerModifier 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
Methods in com.tangosol.util.stream with parameters of type Remote.BiConsumerModifier 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.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.