Package-level declarations
A multiplatform UDF-based application framework
Parts
Name | Description |
---|---|
Model | Holds data for business logic |
ViewState | UI state derived from the Model |
Renderer | Uses the Model to create new State for the UI |
Action | Mutates the Model and can trigger (any) Effect |
Effect | Does background work and triggers (any) Action |
Loop | Handles Action and Effect |
A multiplatform UDF-based application framework
Parts
Name | Description |
---|---|
Model | Holds data for business logic |
ViewState | UI state derived from the Model |
Renderer | Uses the Model to create new State for the UI |
Action | Mutates the Model and can trigger (any) Effect |
Effect | Does background work and triggers (any) Action |
Loop | Handles Action and Effect |
A multiplatform UDF-based application framework
Parts
Name | Description |
---|---|
Model | Holds data for business logic |
ViewState | UI state derived from the Model |
Renderer | Uses the Model to create new State for the UI |
Action | Mutates the Model and can trigger (any) Effect |
Effect | Does background work and triggers (any) Action |
Loop | Handles Action and Effect |
Types
Action is used to mutate the model and/or trigger effects.
Interface for Action emitters.
Type that represents any ActionEmitter.
Multiplatform coroutine dispatcher provider.
Effect is used to perform background tasks.
Base class that handles unidirectional data flow.
Interface for building a given Loop.
Used to delegate the emitter to the rendered state for starting actions.
Properties
The first state of this Loop in a blocking fashion. Useful for testing.
Shorthand for returning an action result without any changes or effects triggered.
Functions
Shorthand for returning an action result with optional model changes only.
Shorthand for returning an action result with both changes to the model and triggered effects.
Render a given Loop into a state.
Shorthand for returning an action result with triggered effects only.