//reactivestate-core/com.ensody.reactivestate/CoroutineDispatcherConfig
CoroutineDispatcherConfig¶
interface CoroutineDispatcherConfig
Interface for a common set of CoroutineDispatchers.
Inheritors¶
DefaultCoroutineDispatcherConfig |
Properties¶
Name | Summary |
---|---|
default | [common] abstract val default: CoroutineDispatcher A coroutine dispatcher that behaves like Dispatchers.Default. |
io | [common] abstract val io: CoroutineDispatcher A coroutine dispatcher that behaves like Dispatchers.IO. |
main | [common] abstract val main: CoroutineDispatcher A coroutine dispatcher that behaves like Dispatchers.Main (i.e. confined to the main UI thread). |
unconfined | [common] abstract val unconfined: CoroutineDispatcher A coroutine dispatcher that behaves like Dispatchers.Unconfined. |