We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ba458b commit ec8cbd2Copy full SHA for ec8cbd2
core/kotlinx-coroutines-core/src/scheduling/Dispatcher.kt
@@ -20,6 +20,11 @@ internal object DefaultScheduler : ExperimentalCoroutineDispatcher() {
20
override fun close() {
21
throw UnsupportedOperationException("$DEFAULT_SCHEDULER_NAME cannot be closed")
22
}
23
+
24
+ override fun toString(): String = DEFAULT_SCHEDULER_NAME
25
26
+ @InternalCoroutinesApi
27
+ fun toDebugString(): String = super.toString()
28
29
30
/**
0 commit comments