Uses of Interface
com.tangosol.util.stream.RemoteIntStream
Package
Description
Contains classes to support functional-style operations on remote streams of elements,
such as map-reduce transformations on collections.
-
Uses of RemoteIntStream in com.tangosol.util.stream
Modifier and TypeMethodDescriptiondefault RemoteIntStream
RemoteIntStream.filter
(Remote.IntPredicate predicate) Returns a stream consisting of the elements of this stream that match the given predicate.RemoteIntStream.filter
(IntPredicate predicate) Returns a stream consisting of the elements of this stream that match the given predicate.default RemoteIntStream
RemoteIntStream.flatMap
(Remote.IntFunction<? extends IntStream> mapper) Returns a stream consisting of the results of replacing each element of this stream with the contents of a mapped stream produced by applying the provided mapping function to each element.RemoteIntStream.flatMap
(IntFunction<? extends IntStream> mapper) Returns a stream consisting of the results of replacing each element of this stream with the contents of a mapped stream produced by applying the provided mapping function to each element.default RemoteIntStream
RemoteStream.flatMapToInt
(Remote.Function<? super T, ? extends IntStream> mapper) Returns anIntStream
consisting of the results of replacing each element of this stream with the contents of a mapped stream produced by applying the provided mapping function to each element.RemoteStream.flatMapToInt
(Function<? super T, ? extends IntStream> mapper) Returns anIntStream
consisting of the results of replacing each element of this stream with the contents of a mapped stream produced by applying the provided mapping function to each element.default RemoteIntStream
RemoteIntStream.map
(Remote.IntUnaryOperator mapper) Returns a stream consisting of the results of applying the given function to the elements of this stream.RemoteIntStream.map
(IntUnaryOperator mapper) Returns a stream consisting of the results of applying the given function to the elements of this stream.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.RemoteStream.mapMultiToInt
(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 RemoteIntStream
RemoteDoubleStream.mapToInt
(Remote.DoubleToIntFunction mapper) Returns anIntStream
consisting of the results of applying the given function to the elements of this stream.RemoteDoubleStream.mapToInt
(DoubleToIntFunction mapper) Returns anIntStream
consisting of the results of applying the given function to the elements of this stream.default RemoteIntStream
RemoteLongStream.mapToInt
(Remote.LongToIntFunction mapper) Returns anIntStream
consisting of the results of applying the given function to the elements of this stream.RemoteLongStream.mapToInt
(LongToIntFunction mapper) Returns anIntStream
consisting of the results of applying the given function to the elements of this stream.default RemoteIntStream
RemoteStream.mapToInt
(Remote.ToIntFunction<? super T> mapper) Returns anIntStream
consisting of the results of applying the given function to the elements of this stream.default RemoteIntStream
RemoteStream.mapToInt
(ValueExtractor<? super T, ? extends Number> mapper) Returns anIntStream
consisting of the results of applying the given extractor to the elements of this stream.RemoteStream.mapToInt
(ToIntFunction<? super T> mapper) Returns anIntStream
consisting of the results of applying the given function to the elements of this stream.RemoteIntStream.parallel()
default RemoteIntStream
RemoteIntStream.peek
(Remote.IntConsumer 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.RemoteIntStream.peek
(IntConsumer 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.RemoteIntStream.sequential()
static <T extends Number>
RemoteIntStreamRemoteStream.toIntStream
(RemoteStream<T> stream) Convert stream of numbers intoRemoteIntStream
.