subscribe

abstract fun subscribe(): Disposable

Proxy for subscribe.

Return

a Disposable


abstract fun subscribe(onSuccess: Consumer<out Any>): Disposable

Proxy for subscribe.

Return

a Disposable


abstract fun subscribe(biConsumer: BiConsumer<out Any, out Any>): Disposable

Proxy for subscribe.

Return

a Disposable


abstract fun subscribe(onSuccess: Consumer<out Any>, onError: Consumer<out Any>): Disposable

Proxy for subscribe.

Return

a Disposable


abstract fun subscribe(observer: SingleObserver<out Any>)

Proxy for subscribe.