Class | Description |
---|---|
CompletableAndThenObservable<R> |
After Completable completes, it relays the signals
of the ObservableSource to the downstream observer.
|
CompletableAndThenPublisher<R> |
After Completable completes, it relays the signals
of the Publisher to the downstream subscriber.
|
FlowableConcatMapCompletable<T> |
Maps the upstream items into
CompletableSource s and subscribes to them one after the
other completes or terminates (in error-delaying mode). |
FlowableConcatMapMaybe<T,R> |
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. |
FlowableConcatMapSingle<T,R> |
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. |
FlowableSwitchMapCompletable<T> |
Maps the upstream values into
CompletableSource s, subscribes to the newer one while
disposing the subscription to the previous CompletableSource , thus keeping at most one
active CompletableSource running. |
FlowableSwitchMapMaybe<T,R> |
Maps the upstream items into
MaybeSource s 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. |
FlowableSwitchMapSingle<T,R> |
Maps the upstream items into
SingleSource s 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. |
MaterializeSingleObserver<T> |
A consumer that implements the consumer types of Maybe, Single and Completable
and turns their signals into Notifications for a SingleObserver.
|
MaybeFlatMapObservable<T,R> |
Maps the success value of a Maybe onto an ObservableSource and
relays its signals to the downstream observer.
|
MaybeFlatMapPublisher<T,R> |
Maps the success value of a Maybe onto a Publisher and
relays its signals to the downstream subscriber.
|
ObservableConcatMapCompletable<T> |
Maps the upstream items into
CompletableSource s and subscribes to them one after the
other completes or terminates (in error-delaying mode). |
ObservableConcatMapMaybe<T,R> |
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. |
ObservableConcatMapSingle<T,R> |
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. |
ObservableSwitchMapCompletable<T> |
Maps the upstream values into
CompletableSource s, subscribes to the newer one while
disposing the subscription to the previous CompletableSource , thus keeping at most one
active CompletableSource running. |
ObservableSwitchMapMaybe<T,R> |
Maps the upstream items into
MaybeSource s 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. |
ObservableSwitchMapSingle<T,R> |
Maps the upstream items into
SingleSource s 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. |
SingleFlatMapObservable<T,R> |
Maps the success value of a Single onto an ObservableSource and
relays its signals to the downstream observer.
|
Copyright © 2019. All rights reserved.