Single Wrapper
Functions
Returns a Completable that ignores the success value of this Single and signals onComplete instead.
Converts this Single into an Observable, which signals the success value via onNext followed by onComplete.
Calls the shared action when the Disposable sent to the observer via onSubscribe is disposed. The action is called after the upstream is disposed.
Calls the shared action for each new observer with the Disposable sent to the downstream. The action is called for each new observer after its onSubscribe callback is called.
Calls the shared action when the Disposable sent to the observer via onSubscribe is disposed. The action is called before the upstream is disposed.
Calls the shared action for each new observer with the Disposable sent to the downstream. The action is called for each new observer before its onSubscribe callback is called.
Calls the mapper with the value emitted by the Single and subscribes to the returned inner Single. Emits the value from the inner Single.
Calls the mapper with the value emitted by the Single and subscribes to the returned inner Single. When the inner Single emits, calls the resultSelector function with the original and the inner values and emits the result.
Calls the mapper with the value emitted by the Single and subscribes to the returned inner Completable.
Calls the transformer with the value emitted by the Single and emits the returned Iterable values one by one as Observable.
Calls the mapper with the value emitted by the Single and subscribes to the returned inner Observable. Emits values from the inner Observable.
Calls the mapper with the value emitted by the Single and subscribes to the returned inner Observable. For each value emitted by the inner Observable, calls the resultSelector function with the original and the inner values and emits the result.
This is just a shortcut for Single.flatMapObservable.
When the Single emits an Iterable of values, iterates over the Iterable and emits all values one by one as an Observable.
Same as mapIterable but saves resulting values into a MutableCollection returned by collectionSupplier.
When the Single signals onError, resumes the flow with a new Single returned by nextSupplier.
When the Single signals onError, emits a value returned by valueSupplier.
Returns a Single that automatically resubscribes to this Single if it signals onError and the Observable returned by the handler function emits a value for that specific Throwable.
Subscribes the specified Observer to this Source