outcome
fun <TModel : Any, TDependency> Action<TModel, TDependency>.outcome(model: TModel? = null, vararg effects: Effect<TModel, TDependency>): Action.Next<TModel, TDependency>
Shorthand for returning an action result with both changes to the model and triggered effects.
For example:
data object OnLoginButtonClick : MainScreenAction {
override fun MainScreenModel.proceed() =
if (username.isBlank() || password.isBlank()) {
skip
} else {
outcome(copy(loading = true), StartLogin(username, password))
}
}
Content copied to clipboard