Package com.tangosol.util.stream
Interface BaseRemoteStream<T,S extends BaseStream<T,S>>
-
- Type Parameters:
T
- the type of the stream elementsS
- the type of of the stream implementingBaseStream
- All Superinterfaces:
AutoCloseable
,BaseStream<T,S>
- All Known Subinterfaces:
RemoteDoubleStream
,RemoteIntStream
,RemoteLongStream
,RemoteStream<T>
public interface BaseRemoteStream<T,S extends BaseStream<T,S>> extends BaseStream<T,S>
An extension ofBaseStream
that adds support for theRemotePipeline
retrieval.- Since:
- 12.2.1
- Author:
- as 2014.08.26
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RemotePipeline<S>
pipeline()
Return a pipeline of intermediate operations for this stream.-
Methods inherited from interface java.util.stream.BaseStream
close, isParallel, iterator, onClose, parallel, sequential, spliterator, unordered
-
-
-
-
Method Detail
-
pipeline
RemotePipeline<S> pipeline()
Return a pipeline of intermediate operations for this stream.This is a terminal operation.
- Returns:
- a pipeline of intermediate operations for this stream
-
-