ReducerContext
ReducerContext is used as receiver for the receiver when defining it with an action:
reduce<A: Action> {
}
// or
reduce(EnumAction) {
}
Content copied to clipboard
Parameters
state
the current state
action
the action that triggered the reducer
launchBlock
launch a coroutine without exposing the bloc's CoroutineScope, it's internal to allow for JobConfig default values via extension functions
Functions
Link copied to clipboard
fun <State, Action> ReducerContext<State, Action>.launch(jobConfig: JobConfig, block: SuspendBlock): Cancel
Extension function for ReducerContext to launch a coroutine and run a suspend function without exposing the bloc's CoroutineScope.