execute
Executes the use case and adds its disposable to shared, automatically disposed, composite disposable. In case some variant of ObservableUseCase.execute method has already been called on this instance of ObservableUseCase, previous one is disposed, no matter what current state of internal Observable is. This behavior can be disabled by passing false to ObservableUseCaseConfig.disposePrevious method.
Return
disposable of internal Observable. This disposable is disposed automatically. It might be used to dispose use case when you need to dispose it in advance on your own.
Parameters
ObservablerConfig used to process results of internal Observable.
Executes the use case and adds its disposable to shared, automatically disposed, composite disposable. In case some variant of ObservableUseCase.execute method has already been called on this instance of ObservableUseCase, previous one is disposed, no matter what current state of internal Observable is. This behavior can be disabled by passing false to ObservableUseCaseConfig.disposePrevious method.
Return
disposable of internal Observable. This disposable is disposed automatically. It might be used to dispose use case when you need to dispose it in advance on your own.
Parameters
Arguments used for initial use case initialisation.
ObservableUseCaseConfig used to process results of internal Observable.