-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathDispatchers.kt
39 lines (28 loc) · 1.52 KB
/
Dispatchers.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines
import kotlin.coroutines.*
import kotlin.native.concurrent.*
internal actual fun createMainDispatcher(default: CoroutineDispatcher): MainCoroutineDispatcher =
MissingMainDispatcher
@SharedImmutable
internal actual val mainDispatcherIsPresent: Boolean = false
internal actual fun createDefaultDispatcher(): CoroutineDispatcher = DefaultDispatcher
private object DefaultDispatcher : CoroutineDispatcher() {
// Delegated, so users won't be able to downcast and call 'close'
// The precise number of threads cannot be obtained until KT-48179 is implemented, 4 is just "good enough" number.
private val ctx = newFixedThreadPoolContext(4, "Dispatchers.Default")
override fun dispatch(context: CoroutineContext, block: Runnable) {
ctx.dispatch(context, block)
}
}
private object MissingMainDispatcher : MainCoroutineDispatcher() {
override val immediate: MainCoroutineDispatcher
get() = notImplemented()
override fun dispatch(context: CoroutineContext, block: Runnable) = notImplemented()
override fun isDispatchNeeded(context: CoroutineContext): Boolean = notImplemented()
override fun dispatchYield(context: CoroutineContext, block: Runnable) = notImplemented()
private fun notImplemented(): Nothing = TODO("Dispatchers.Main is missing on the current platform")
}
internal actual inline fun platformAutoreleasePool(crossinline block: () -> Unit) = block()