Action

fun interface Action<TModel : Any, TDependency>

Action is used to mutate the model and/or trigger effects.

For example:

data object OnDetailsExpandClick : HelpScreenAction {
override fun HelpScreenModel.proceed() =
mutate(copy(showDetails = !showDetails))
}

Or using SAM:

val OnDetailExpandClick: HelpScreenAction
get() = { next(copy(showDetails = !showDetails)) }

Parameters

TModel

the type of the Loop model

TDependency

the type of the Loop's dependency

See also

Inheritors

Types

Link copied to clipboard
data class Next<TModel : Any, TDependency>(val model: TModel? = null, val effects: Set<Effect<TModel, TDependency>> = emptySet())

Represent the result of an Action.

Properties

Link copied to clipboard

Shorthand for returning an action result without any changes or effects triggered.

Functions

Link copied to clipboard

Shorthand for returning an action result with optional model changes only.

Link copied to clipboard

Shorthand for returning an action result with both changes to the model and triggered effects.

Link copied to clipboard

Execute this Action.

Link copied to clipboard

Shorthand for returning an action result with triggered effects only.