Package org.reactivestreams
Interface Processor<T,R>
-
- Type Parameters:
T
- the type of element signaled to theSubscriber
R
- the type of element signaled by thePublisher
- All Superinterfaces:
Publisher<R>
,Subscriber<T>
public interface Processor<T,R> extends Subscriber<T>, Publisher<R>
AProcessor
represents a processing stage—which is both aSubscriber
and aPublisher
and obeys the contracts of both.
-
-
Method Summary
-
Methods inherited from interface org.reactivestreams.Subscriber
onComplete, onError, onNext, onSubscribe
-
-