FlowableSubscribeProxy

interface FlowableSubscribeProxy<@NonNull() T>

Subscribe proxy that matches Flowable's subscribe overloads.

Functions

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