See: Description
| Class | Description |
|---|---|
| DefaultObserver<T> |
Abstract base implementation of an Observer with support for cancelling a
subscription via
DefaultObserver.cancel() (synchronously) and calls DefaultObserver.onStart()
when the subscription happens. |
| DisposableObserver<T> |
An abstract Observer that allows asynchronous cancellation by implementing Disposable.
|
| ResourceObserver<T> |
An abstract Observer that allows asynchronous cancellation of its subscription and associated resources.
|
| SafeObserver<T> |
Wraps another Subscriber and ensures all onXXX methods conform the protocol
(except the requirement for serialized access).
|
| SerializedObserver<T> |
Serializes access to the onNext, onError and onComplete methods of another Subscriber.
|
| TestObserver<T> |
An Observer that records events and allows making assertions about them.
|