alakazam.kotlin.core.CoroutineDispatchers.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-core Show documentation
Show all versions of kotlin-core Show documentation
A set of useful functions and extensions for Kotlin development.
package alakazam.kotlin.core
import kotlinx.coroutines.CoroutineDispatcher
import kotlin.coroutines.CoroutineContext
public class MainDispatcher(private val delegate: CoroutineDispatcher) : CoroutineContext by delegate
public class IODispatcher(private val delegate: CoroutineDispatcher) : CoroutineContext by delegate
public class DefaultDispatcher(private val delegate: CoroutineDispatcher) : CoroutineContext by delegate
public class UnconfinedDispatcher(private val delegate: CoroutineDispatcher) : CoroutineContext by delegate