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