Source set: Common
public interface TaskDispatchers
Interface providing access to CoroutineDispatchers used for task execution inside a Compose hierarchy.
Properties
Default
Source set: Common
public val Default: CoroutineDispatcher
A CoroutineDispatcher optimized for performing CPU-intensive work outside of the UI thread.
IO
Source set: Common
@get:Suppress("AcronymName") public val IO: CoroutineDispatcher
A CoroutineDispatcher designed for offloading blocking I/O tasks to a shared pool of threads.