UseCaseConfig

class UseCaseConfig<T>

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

Types

Link copied to clipboard
class Builder<T>

Constructs references to lambdas and some basic configuration used to process results of Coroutine use case.

Properties

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