Flow.Processor

  • Flow.Processor acts as both a subscriber, receiving items, and a publisher, producing items.

  • It inherits methods from Flow.Subscriber for handling incoming items: onNext, onError, onComplete, and onSubscribe.

  • It also inherits subscribe from Flow.Publisher to allow other subscribers to receive its output.

public static interface Flow.Processor implements Subscriber<T> Publisher<R>

A component that acts as both a Subscriber and Publisher.

Inherited Method Summary