Uses of Class
io.reactivex.rxjava3.processors.FlowableProcessor
Packages that use FlowableProcessor
Package
Description
Classes representing so-called hot backpressure-aware sources, aka processors,
that implement the
FlowableProcessor class,
the Reactive Streams Processor interface
to allow forms of multicasting events to one or more subscribers as well as consuming another
Reactive Streams Publisher.-
Uses of FlowableProcessor in io.reactivex.rxjava3.processors
Subclasses of FlowableProcessor in io.reactivex.rxjava3.processorsModifier and TypeClassDescriptionfinal classProcessor that emits the very last value followed by a completion event or the received error toSubscribers.final classProcessor that emits the most recent item it has observed and all subsequent observed items to each subscribedSubscriber.final classAFlowableProcessorimplementation that coordinates downstream requests through a front-buffer and stable-prefetching, optionally canceling the upstream if all subscribers have cancelled.final classProcessor that multicasts all subsequently observed items to its currentSubscribers.final classReplays events to Subscribers.final classAFlowableProcessorvariant that queues up events until a singleSubscribersubscribes to it, replays those events to it until theSubscribercatches up and then switches to relaying events live to this singleSubscriberuntil thisUnicastProcessorterminates or theSubscribercancels its subscription.Methods in io.reactivex.rxjava3.processors that return FlowableProcessorModifier and TypeMethodDescriptionfinal @NonNull FlowableProcessor<T> FlowableProcessor.toSerialized()Wraps this FlowableProcessor and serializes the calls to the onSubscribe, onNext, onError and onComplete methods, making them thread-safe.