FlowableUseCaseConfig

class FlowableUseCaseConfig<T>

Holds references to lambdas and some basic configuration used to process results of Flowabler use case. Use FlowableUseCaseConfig.Builder to construct this object.

Types

Builder
Link copied to clipboard
class Builder<T>

Functions

equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open fun hashCode(): Int
toString
Link copied to clipboard
open fun toString(): String

Properties

disposePrevious
Link copied to clipboard
val disposePrevious: Boolean
onComplete
Link copied to clipboard
val onComplete: () -> Unit
onError
Link copied to clipboard
val onError: (Throwable) -> Unit
onNext
Link copied to clipboard
val onNext: (T) -> Unit
onStart
Link copied to clipboard
val onStart: () -> Unit