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>
An extension of
BaseStream
that adds support for
the RemotePipeline
retrieval.- Since:
- 12.2.1
- Author:
- as 2014.08.26
-
Method Summary
Modifier and TypeMethodDescriptionpipeline()
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 Details
-
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
-