e.ultra.kontainer.0.77.0.source-code.KontainerCoroutineScope.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kontainer Show documentation
Show all versions of kontainer Show documentation
"Kotlin Depdency Injection Framework"
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