Uses of Interface
com.tangosol.util.stream.RemoteLongStream
Package
Description
Contains classes to support functional-style operations on remote streams of elements,
such as map-reduce transformations on collections.
-
Uses of RemoteLongStream in com.tangosol.util.stream
Modifier and TypeMethodDescriptionRemoteIntStream.asLongStream()
Returns aLongStream
consisting of the elements of this stream, converted tolong
.default RemoteLongStream
RemoteLongStream.filter
(Remote.LongPredicate predicate) Returns a stream consisting of the elements of this stream that match the given predicate.RemoteLongStream.filter
(LongPredicate predicate) Returns a stream consisting of the elements of this stream that match the given predicate.default RemoteLongStream
RemoteLongStream.flatMap
(Remote.LongFunction<? extends LongStream> 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.RemoteLongStream.flatMap
(LongFunction<? extends LongStream> 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 RemoteLongStream
RemoteStream.flatMapToLong
(Remote.Function<? super T, ? extends LongStream> mapper) Returns anLongStream
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.flatMapToLong
(Function<? super T, ? extends LongStream> mapper) Returns anLongStream
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 RemoteLongStream
RemoteLongStream.map
(Remote.LongUnaryOperator mapper) Returns a stream consisting of the results of applying the given function to the elements of this stream.RemoteLongStream.map
(LongUnaryOperator mapper) Returns a stream consisting of the results of applying the given function to the elements of this stream.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.RemoteStream.mapMultiToLong
(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.default RemoteLongStream
RemoteDoubleStream.mapToLong
(Remote.DoubleToLongFunction mapper) Returns aLongStream
consisting of the results of applying the given function to the elements of this stream.RemoteDoubleStream.mapToLong
(DoubleToLongFunction mapper) Returns aLongStream
consisting of the results of applying the given function to the elements of this stream.default RemoteLongStream
RemoteIntStream.mapToLong
(Remote.IntToLongFunction mapper) Returns aLongStream
consisting of the results of applying the given function to the elements of this stream.RemoteIntStream.mapToLong
(IntToLongFunction mapper) Returns aLongStream
consisting of the results of applying the given function to the elements of this stream.default RemoteLongStream
RemoteStream.mapToLong
(Remote.ToLongFunction<? super T> mapper) Returns aLongStream
consisting of the results of applying the given function to the elements of this stream.default RemoteLongStream
RemoteStream.mapToLong
(ValueExtractor<? super T, ? extends Number> mapper) Returns anLongStream
consisting of the results of applying the given extractor to the elements of this stream.RemoteStream.mapToLong
(ToLongFunction<? super T> mapper) Returns aLongStream
consisting of the results of applying the given function to the elements of this stream.RemoteLongStream.parallel()
default RemoteLongStream
RemoteLongStream.peek
(Remote.LongConsumer 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.RemoteLongStream.peek
(LongConsumer 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.RemoteLongStream.sequential()
static <T extends Number>
RemoteLongStreamRemoteStream.toLongStream
(RemoteStream<T> stream) Convert stream of numbers intoRemoteLongStream
.