-
public final class CoroutineScopeOwner.UseCaseConfig<T extends Object>Holds references to lambdas and some basic configuration used to process results of Coroutine use case. Use UseCaseConfig.Builder to construct this object.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classCoroutineScopeOwner.UseCaseConfig.BuilderConstructs references to lambdas and some basic configuration used to process results of Coroutine use case.
-
Method Summary
Modifier and Type Method Description final Function0<Unit>getOnStart()final Function1<T, Unit>getOnSuccess()final Function1<Throwable, Unit>getOnError()final BooleangetDisposePrevious()-
-
Method Detail
-
getOnStart
final Function0<Unit> getOnStart()
-
getOnSuccess
final Function1<T, Unit> getOnSuccess()
-
getOnError
final Function1<Throwable, Unit> getOnError()
-
getDisposePrevious
final Boolean getDisposePrevious()
-
-
-
-