MaybeUseCaseConfig

class MaybeUseCaseConfig<T>

Holds references to lambdas and some basic configuration used to process results of Mayber use case. Use MaybeUseCaseConfig.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 Mayber 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
onComplete
Link copied to clipboard
val onComplete: () -> Unit
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