Uses of Interface
com.tangosol.util.stream.RemoteLongStream
Packages that use 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.streamMethods in com.tangosol.util.stream that return RemoteLongStreamModifier and TypeMethodDescriptionRemoteIntStream.asLongStream()Returns aLongStreamconsisting of the elements of this stream, converted tolong.default RemoteLongStreamRemoteLongStream.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 RemoteLongStreamRemoteLongStream.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 RemoteLongStreamRemoteStream.flatMapToLong(Remote.Function<? super T, ? extends LongStream> mapper) Returns anLongStreamconsisting 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 anLongStreamconsisting 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 RemoteLongStreamRemoteLongStream.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 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.RemoteStream.mapMultiToLong(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.default RemoteLongStreamRemoteDoubleStream.mapToLong(Remote.DoubleToLongFunction mapper) Returns aLongStreamconsisting of the results of applying the given function to the elements of this stream.RemoteDoubleStream.mapToLong(DoubleToLongFunction mapper) Returns aLongStreamconsisting of the results of applying the given function to the elements of this stream.default RemoteLongStreamRemoteIntStream.mapToLong(Remote.IntToLongFunction mapper) Returns aLongStreamconsisting of the results of applying the given function to the elements of this stream.RemoteIntStream.mapToLong(IntToLongFunction mapper) Returns aLongStreamconsisting of the results of applying the given function to the elements of this stream.default RemoteLongStreamRemoteStream.mapToLong(Remote.ToLongFunction<? super T> mapper) Returns aLongStreamconsisting of the results of applying the given function to the elements of this stream.default RemoteLongStreamRemoteStream.mapToLong(ValueExtractor<? super T, ? extends Number> mapper) Returns anLongStreamconsisting of the results of applying the given extractor to the elements of this stream.RemoteStream.mapToLong(ToLongFunction<? super T> mapper) Returns aLongStreamconsisting of the results of applying the given function to the elements of this stream.RemoteLongStream.parallel()default RemoteLongStreamRemoteLongStream.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.