All Downloads are FREE. Search and download functionalities are using the official Maven repository.

alakazam.kotlin.core.CoroutineDispatchers.kt Maven / Gradle / Ivy

There is a newer version: 4.7.0
Show newest version
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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy