Loop

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.

Parameters

model

the initial model

renderer

transform model into state

args

input arguments

firstAction

action to emit when loop is constructed

dependency

dependency container

effectContext

dispatcher for launching effects

Inheritors

Constructors

Link copied to clipboard
constructor(model: TModel, renderer: Renderer<TModel, TState>, args: TArgs? = null, firstAction: TAction? = null, dependency: TDependency? = null, effectContext: CoroutineContext = DispatcherProvider.IO)

Properties

Link copied to clipboard

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

Link copied to clipboard
open override val scope: CoroutineScope

Scope used for emission.

Link copied to clipboard
val state: Flow<TState>

Functions

Link copied to clipboard

Add a child emitter on the dependency.

Link copied to clipboard
fun applyArgs(args: TArgs)
Link copied to clipboard
override fun emit(action: Action<TModel, TDependency>)

Emit an action for the Loop using the given scope.

Link copied to clipboard
fun startIn(scope: CoroutineScope): Loop<TState, TModel, TArgs, TDependency, TAction>

Start the loop in the given scope.