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
val <TState : ViewState<TModel, TDependency>, TModel : Any, TArgs, TDependency, TAction : Action<TModel, TDependency>> Loop<TState, TModel, TArgs, TDependency, TAction>.firstState: TState
The first state of this Loop in a blocking fashion. Useful for testing.
Functions
Link copied to clipboard
override fun <TChildModel : Any, TChildDependency> addChildEmitter(child: ActionEmitter<TChildModel, TChildDependency>)
Add a child emitter on the dependency.