Is `import kotlinx.coroutines.newSingleThreadConte...
# kotlin-native
y
Is
import kotlinx.coroutines.newSingleThreadContext
available in
kotlinx-coroutines-core-common
? I can’t see any information here: https://github.com/Kotlin/kotlinx.coroutines/tree/master/common/kotlinx-coroutines-core-common But I can see it’s available for `kotlinx-coroutines-core`: https://github.com/Kotlin/kotlinx.coroutines/blob/master/core/kotlinx-coroutines-core/README.md
g
threading is not available in common code, there are no threads API on JS, you cannot create thread pool there, also Native has very different threading model, so this API available only on JVM
y
thanks