class |
ConcatPublisher<T> |
Concat streams to one.
|
class |
MultiCoupledProcessor<T,R> |
Coupled processor sends items received to the passed in subscriber, and emits items received from the passed in publisher.
|
class |
MultiDistinctProcessor<T> |
Filter out all duplicate items.
|
class |
MultiDropWhileProcessor<T> |
Drop the longest prefix of elements from this stream that satisfy the given predicate.
|
class |
MultiFilterProcessor<T> |
Processor filtering stream with supplied predicate.
|
class |
MultiFlatMapProcessor<T,X> |
Flatten the elements emitted by publishers produced by the mapper function to this stream.
|
class |
MultiLimitProcessor<T> |
Let pass only specified number of items.
|
class |
MultiMapProcessor<T,U> |
|
class |
MultiOnErrorResumeProcessor<T> |
Resume stream from supplied publisher if onError signal is intercepted.
|
class |
MultiPeekProcessor<T> |
Invoke supplied consumer for every item in the stream.
|
class |
MultiSkipProcessor<T> |
Skip first n items, all the others are emitted.
|
class |
MultiTakeWhileProcessor<T> |
Take the longest prefix of elements from this stream that satisfy the given predicate.
|
class |
MultiTappedProcessor<R> |
Processor executing provided functions on passing signals onNext, onError, onComplete, onCancel.
|