FlowableSubscribeProxy

Subscribe proxy that matches Flowable's subscribe overloads.

Functions

Link copied to clipboard
abstract fun subscribe(): Disposable
Proxy for subscribe.
abstract fun subscribe(onNext: Consumer<out Any>): Disposable
Proxy for subscribe.
abstract fun subscribe(observer: Subscriber<out Any>)
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.
Link copied to clipboard
abstract fun <@NonNull E : Subscriber<out Any>?> subscribeWith(observer: E): E
Proxy for subscribeWith.
Link copied to clipboard
Proxy for test.
abstract fun test(initialRequest: Long): TestSubscriber<T>
Proxy for test.
abstract fun test(initialRequest: Long, cancel: Boolean): TestSubscriber<T>
Proxy for test.