Effect

fun interface Effect<TModel : Any, TDependency>

Effect is used to perform background tasks.

Parameters

TModel

the type of the Loop model

TDependency

the type of the Loop's dependency

Inheritors

Functions

Link copied to clipboard
abstract suspend fun ActionEmitter<TModel, TDependency>.trigger(dependency: TDependency?): Any?

Execute this Effect and optionally emit one or more Actions.