Package org.streamingpool.core.support
Interface StreamCollectingSupport
-
- All Superinterfaces:
RxStreamSupport,StreamSupport
public interface StreamCollectingSupport extends RxStreamSupport
Support interface that provides convenience methods for working with streams.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classStreamCollectingSupport.OngoingBlockingCollecting<T>-
Nested classes/interfaces inherited from interface org.streamingpool.core.support.StreamSupport
StreamSupport.OngoingLazyProviding<T>, StreamSupport.OngoingProviding<T>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default <T> StreamCollectingSupport.OngoingBlockingCollecting<T>from(StreamId<T> streamId)The given id will be discovered and the stream can be manipulated usingStreamCollectingSupport.OngoingBlockingCollectingmethods.-
Methods inherited from interface org.streamingpool.core.support.RxStreamSupport
rxFrom
-
Methods inherited from interface org.streamingpool.core.support.StreamSupport
discover, getAncestorsFrom, instrumentationService, provide, provide, providingService
-
-
-
-
Method Detail
-
from
default <T> StreamCollectingSupport.OngoingBlockingCollecting<T> from(StreamId<T> streamId)
The given id will be discovered and the stream can be manipulated usingStreamCollectingSupport.OngoingBlockingCollectingmethods. This is useful for simple use cases in which is not needed to use a more advanced ReactiveStreams library.
-
-