Package io.reactivex.rxjava3.internal.operators.mixed


package io.reactivex.rxjava3.internal.operators.mixed
  • Classes
    Class
    Description
    After Completable completes, it relays the signals of the ObservableSource to the downstream observer.
    After Completable completes, it relays the signals of the Publisher to the downstream subscriber.
    Base class for implementing concatMapX main observers.
    Base class for implementing concatMapX main subscribers.
    Maps the upstream items into CompletableSources and subscribes to them one after the other completes or terminates (in error-delaying mode).
    Maps each upstream item into a MaybeSource, subscribes to them one after the other terminates and relays their success values, optionally delaying any errors till the main and inner sources terminate.
    Maps each upstream item into a MaybeSource, subscribes to them one after the other terminates and relays their success values, optionally delaying any errors till the main and inner sources terminate.
    Maps each upstream item into a SingleSource, subscribes to them one after the other terminates and relays their success values, optionally delaying any errors till the main and inner sources terminate.
    Maps each upstream item into a SingleSource, subscribes to them one after the other terminates and relays their success values, optionally delaying any errors till the main and inner sources terminate.
    Maps the upstream values into CompletableSources, subscribes to the newer one while disposing the subscription to the previous CompletableSource, thus keeping at most one active CompletableSource running.
    Switch between subsequent CompletableSources emitted by a Publisher.
    Maps the upstream items into MaybeSources and switches (subscribes) to the newer ones while disposing the older ones and emits the latest success value if available, optionally delaying errors from the main source or the inner sources.
    Switch between subsequent MaybeSources emitted by a Publisher.
    Maps the upstream items into SingleSources and switches (subscribes) to the newer ones while disposing the older ones and emits the latest success value, optionally delaying errors from the main source or the inner sources.
    Switch between subsequent SingleSources emitted by a Publisher.
    A consumer that implements the consumer types of Maybe, Single and Completable and turns their signals into Notifications for a SingleObserver.
    Maps the success value of a Maybe onto an ObservableSource and relays its signals to the downstream observer.
    Maps the success value of a Maybe onto a Publisher and relays its signals to the downstream subscriber.
    Maps the upstream items into CompletableSources and subscribes to them one after the other completes or terminates (in error-delaying mode).
    Maps each upstream item into a MaybeSource, subscribes to them one after the other terminates and relays their success values, optionally delaying any errors till the main and inner sources terminate.
    Maps each upstream item into a SingleSource, subscribes to them one after the other terminates and relays their success values, optionally delaying any errors till the main and inner sources terminate.
    Maps the upstream values into CompletableSources, subscribes to the newer one while disposing the subscription to the previous CompletableSource, thus keeping at most one active CompletableSource running.
    Maps the upstream items into MaybeSources and switches (subscribes) to the newer ones while disposing the older ones and emits the latest success value if available, optionally delaying errors from the main source or the inner sources.
    Maps the upstream items into SingleSources and switches (subscribes) to the newer ones while disposing the older ones and emits the latest success value if available, optionally delaying errors from the main source or the inner sources.
    Maps the success value of a Single onto an ObservableSource and relays its signals to the downstream observer.