ReducerContextNoAction

data class ReducerContextNoAction<State>(val state: State, launchBlock: Launch)

ReducerContextNoAction is used as receiver for the receiver defined MVVM+ style (no action):

fun doSomething() = reduce {
}

Parameters

state

the current state

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, launchBlock: Launch)

Functions

Link copied to clipboard

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

Properties

Link copied to clipboard