| Interface | Description |
|---|---|
| Completable.CompletableOnSubscribe |
Callback used for building deferred computations that takes a CompletableSubscriber.
|
| Completable.CompletableOperator |
Convenience interface and callback used by the lift operator that given a child CompletableSubscriber,
return a parent CompletableSubscriber that does any kind of lifecycle-related transformations.
|
| Completable.CompletableSubscriber |
Represents the subscription API callbacks when subscribing to a Completable instance.
|
| Completable.CompletableTransformer |
Convenience interface and callback used by the compose operator to turn a Completable into another
Completable fluently.
|
| NbpObservable.NbpOnSubscribe<T> | |
| NbpObservable.NbpOperator<Downstream,Upstream> | |
| NbpObservable.NbpSubscriber<T> | |
| NbpObservable.NbpTransformer<Upstream,Downstream> | |
| Observable.Operator<Downstream,Upstream> |
Interface to map/wrap a downstream subscriber to an upstream subscriber.
|
| Observable.Transformer<T,R> |
Interface to compose observables.
|
| Single.SingleOnSubscribe<T> | |
| Single.SingleOperator<Downstream,Upstream> | |
| Single.SingleSubscriber<T> | |
| Single.SingleTransformer<Upstream,Downstream> |
| Class | Description |
|---|---|
| Completable |
Represents a deferred computation without any value but only indication for completion or exception.
|
| NbpObservable<T> |
Observable for delivering a sequence of values without backpressure.
|
| NbpObserver<T> | |
| Notification |
Utility class to help construct notification objects.
|
| Observable<T> | |
| Observer<T> | |
| Optional<T> |
Simplified backport of Java 8's Optional type.
|
| Scheduler | |
| Scheduler.Worker | |
| Single<T> |
Represents a deferred computation and emission of a single value or exception.
|
| Try<T> |
Container for either a value of type T or a Throwable.
|
| Enum | Description |
|---|---|
| BackpressureStrategy |