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

e.ultra.kontainer.0.77.0.source-code.KontainerCoroutineScope.kt Maven / Gradle / Ivy

The newest version!
package de.peekandpoke.ultra.kontainer

import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.SupervisorJob
import kotlin.coroutines.CoroutineContext

internal object KontainerCoroutineScope : CoroutineScope {
    private val scopeJob = SupervisorJob()
    private val scope = CoroutineScope(Dispatchers.Unconfined + scopeJob)

    override val coroutineContext: CoroutineContext
        get() = scope.coroutineContext
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy