Builder

class Builder<T>

Functions

build
Link copied to clipboard
fun build(): FlowableUseCaseConfig<T>
disposePrevious
Link copied to clipboard
fun disposePrevious(disposePrevious: Boolean)
Set whether currently running internal Flowable should be disposed when execute is called repeatedly.
equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open fun hashCode(): Int
onComplete
Link copied to clipboard
fun onComplete(onComplete: () -> Unit)
Set lambda which is called when onComplete on internal Flowable is called
onError
Link copied to clipboard
fun onError(onError: (Throwable) -> Unit)
Set lambda which is called when onError on internal Flowable is called
onNext
Link copied to clipboard
fun onNext(onNext: (T) -> Unit)
Set lambda which is called when onNext on internal Flowable is called
onStart
Link copied to clipboard
fun onStart(onStart: () -> Unit)
Set lambda which is called right before internal Flowable is subscribed
toString
Link copied to clipboard
open fun toString(): String