execute Stream
open fun <T : Any> Flowable<T>.executeStream(config: FlowableUseCaseConfig.Builder<T>.() -> Unit): Disposable
Content copied to clipboard
Executes the Flowable and adds its disposable to shared, automatically disposed, composite disposable.
Return
disposable of internal Flowable. It might be used to dispose use case when you need to dispose it in advance on your own.
Parameters
config
FlowableUseCaseConfig used to process results of internal Flowable.