ObservableSubscribeProxy

interface ObservableSubscribeProxy<@NonNull() T>

Subscribe proxy that matches Observable's subscribe overloads.

Functions

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