Interface | Description |
---|---|
Processor<T,R> |
A Processor represents a processing stage—which is both a
Subscriber
and a Publisher and obeys the contracts of both. |
Publisher<T> |
A
Publisher is a provider of a potentially unbounded number of sequenced elements, publishing them according to
the demand received from its Subscriber (s). |
Subscriber<T> |
Will receive call to
Subscriber.onSubscribe(Subscription) once after passing an instance of Subscriber to Publisher.subscribe(Subscriber) . |
Subscription |