SingleUseCaseConfig

class SingleUseCaseConfig<T>

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

Types

Builder
Link copied to clipboard
class Builder<T>
Constructs references to lambdas and some basic configuration used to process results of Singler use case.

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
onError
Link copied to clipboard
val onError: (Throwable) -> Unit
onStart
Link copied to clipboard
val onStart: () -> Unit
onSuccess
Link copied to clipboard
val onSuccess: (T) -> Unit