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 composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.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 composedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.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> RRemoteDoubleStream.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> RRemoteIntStream.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> RRemoteLongStream.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> RRemoteStream.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 RemoteDoubleStreamRemoteStream.mapMultiToDouble(Remote.BiConsumer<? super T, ? super DoubleConsumer> mapper) Returns aDoubleStreamconsisting of the results of replacing each element of this stream with multiple elements, specifically zero or more elements.default RemoteIntStreamRemoteStream.mapMultiToInt(Remote.BiConsumer<? super T, ? super IntConsumer> mapper) Returns anIntStreamconsisting of the results of replacing each element of this stream with multiple elements, specifically zero or more elements.default RemoteLongStreamRemoteStream.mapMultiToLong(Remote.BiConsumer<? super T, ? super LongConsumer> mapper) Returns aLongStreamconsisting 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 newCollectordescribed by the givensupplier,accumulator,combiner, andfinisherfunctions.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 newCollectordescribed by the givensupplier,accumulator, andcombinerfunctions.