JoiningCoroutinesDispatchList
data class JoiningCoroutinesDispatchList(val actions: List<Action>, val concurrent: Boolean) : CoThunk<Any?>
A CoThunk that dispatches actions in given order. If concurrent is false, every ForegroundJobAction is joined sequentially. If concurrent is true, actions are dispatched concurrently and execute suspends until every ForegroundJobAction is completed.
Constructors
Functions
Properties
Extensions
Link copied to clipboard
Creates a DispatchList with this action and other. This operator automatically flattens DispatchList, so a chain of calls results in a single and flat DispatchList.