BaseThunk

abstract class BaseThunk<State>(block: DispatchScope<State>.() -> Unit) : Thunk<State>

A Thunk implementation that executes a block.

Constructors

Link copied to clipboard
fun <State> BaseThunk(block: DispatchScope<State>.() -> Unit)

Functions

Link copied to clipboard
override fun DispatchScope<State>.execute()

Extensions

Link copied to clipboard
operator fun Action.plus(other: Action): DispatchList

Creates a DispatchList with this action and other. This operator automatically flattens DispatchList, so a chain of calls results in a single and flat DispatchList.