MaybeSubscribeProxy

Subscribe proxy that matches Maybe's subscribe overloads.

Functions

Link copied to clipboard
abstract fun subscribe(): Disposable
Proxy for subscribe.
abstract fun subscribe(observer: MaybeObserver<out Any>)
Proxy for subscribe.
abstract fun subscribe(onSuccess: Consumer<out Any>): Disposable
Proxy for subscribe.
abstract fun subscribe(onSuccess: Consumer<out Any>, onError: Consumer<out Any>): Disposable
Proxy for subscribe.
abstract fun subscribe(onSuccess: Consumer<out Any>, onError: Consumer<out Any>, onComplete: Action): Disposable
Proxy for subscribe.
Link copied to clipboard
abstract fun <@NonNull E : MaybeObserver<out Any>?> subscribeWith(observer: E): E
Proxy for subscribeWith.
Link copied to clipboard
Proxy for test.
abstract fun test(dispose: Boolean): TestObserver<T>
Proxy for test.