ReducerContext

data class ReducerContext<State, Action>(val state: State, val action: Action, launchBlock: Launch)

ReducerContext is used as receiver for the receiver when defining it with an action:

reduce<A: Action> {
}

// or

reduce(EnumAction) {
}

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

Constructors

Link copied to clipboard
constructor(state: State, action: Action, launchBlock: Launch)

Functions

Link copied to clipboard

Extension function for ReducerContext to launch a coroutine and run a suspend function without exposing the bloc's CoroutineScope.

Properties

Link copied to clipboard
Link copied to clipboard