commonMain.io.nacular.doodle.coroutines.Dispatchers.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of browser Show documentation
Show all versions of browser Show documentation
A pure Kotlin, UI framework for the Web and Desktop
package io.nacular.doodle.coroutines
import kotlinx.coroutines.CoroutineDispatcher
import kotlinx.coroutines.Dispatchers
/**
* Common CoroutineDispatchers
*/
public object Dispatchers {
/** Dispatcher that corresponds to the UI thread. */
public val UI: CoroutineDispatcher = Dispatchers.Default
}