Package-level declarations

A multiplatform UDF-based application framework

Parts

NameDescription
ModelHolds data for business logic
ViewStateUI state derived from the Model
RendererUses the Model to create new State for the UI
ActionMutates the Model and can trigger (any) Effect
EffectDoes background work and triggers (any) Action
LoopHandles Action and Effect

A multiplatform UDF-based application framework

Parts

NameDescription
ModelHolds data for business logic
ViewStateUI state derived from the Model
RendererUses the Model to create new State for the UI
ActionMutates the Model and can trigger (any) Effect
EffectDoes background work and triggers (any) Action
LoopHandles Action and Effect

A multiplatform UDF-based application framework

Parts

NameDescription
ModelHolds data for business logic
ViewStateUI state derived from the Model
RendererUses the Model to create new State for the UI
ActionMutates the Model and can trigger (any) Effect
EffectDoes background work and triggers (any) Action
LoopHandles Action and Effect

Types

Link copied to clipboard
fun interface Action<TModel : Any, TDependency>

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

Link copied to clipboard

Interface for Action emitters.

Link copied to clipboard

Type that represents any ActionEmitter.

Link copied to clipboard
actual object DispatcherProvider
expect object DispatcherProvider

Multiplatform coroutine dispatcher provider.

actual object DispatcherProvider
Link copied to clipboard
fun interface Effect<TModel : Any, TDependency>

Effect is used to perform background tasks.

Link copied to clipboard
abstract class Loop<out TState : ViewState<TModel, TDependency>, TModel : Any, in TArgs, TDependency, in TAction : Action<TModel, TDependency>>(model: TModel, renderer: Renderer<TModel, TState>, args: TArgs? = null, firstAction: TAction? = null, dependency: TDependency? = null, effectContext: CoroutineContext = DispatcherProvider.IO) : ActionEmitter<TModel, TDependency>

Base class that handles unidirectional data flow.

Link copied to clipboard

Interface for building a given Loop.

Link copied to clipboard
Link copied to clipboard
fun interface Renderer<in TModel : Any, out TState : ViewState<*, *>>

Interface for transforming the current Loop model into a new view state.

Link copied to clipboard
abstract class ViewState<TModel : Any, TDependency>

Used to delegate the emitter to the rendered state for starting actions.

Properties

Link copied to clipboard

The first state of this Loop in a blocking fashion. Useful for testing.

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
inline fun <TState : ViewState<TModel, TDependency>, TModel : Any, TArgs, TDependency, TAction : Action<TModel, TDependency>, TRenderer : Renderer<TModel, TState>, TLoop : Loop<TState, TModel, TArgs, TDependency, TAction>> renderState(constructor: (model: TModel, renderer: TRenderer, args: TArgs?) -> TLoop, model: TModel, renderer: TRenderer, args: TArgs? = null): TState

Render a given Loop into a state.

Link copied to clipboard

Shorthand for returning an action result with triggered effects only.