Package autodispose2.observers

These are Observers AutoDispose uses when scoping an observable. They are exposed as a public API to allow for consumers to watch for them if they want, such as in RxJava plugins.

Types

AutoDisposingCompletableObserver
Link copied to clipboard
interface AutoDisposingCompletableObserver : CompletableObserver, Disposable
A DisposableCompletableObserver that can automatically dispose itself.
AutoDisposingMaybeObserver
Link copied to clipboard
interface AutoDisposingMaybeObserver<@NonNull() T> : MaybeObserver<T> , Disposable
A DisposableMaybeObserver that can automatically dispose itself.
AutoDisposingObserver
Link copied to clipboard
interface AutoDisposingObserver<@NonNull() T> : Observer<T> , Disposable
A DisposableObserver that can automatically dispose itself.
AutoDisposingSingleObserver
Link copied to clipboard
interface AutoDisposingSingleObserver<@NonNull() T> : SingleObserver<T> , Disposable
A DisposableSingleObserver that can automatically dispose itself.
AutoDisposingSubscriber
Link copied to clipboard
interface AutoDisposingSubscriber<@NonNull() T> : FlowableSubscriber<T> , Subscription, Disposable
A DisposableSubscriber that can automatically dispose itself.