File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
kotlinx-coroutines-core/jvm/src Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -107,9 +107,10 @@ public actual object Dispatchers {
107107 *
108108 * ### Implementation note
109109 *
110- * This dispatcher shares threads with a [Default][Dispatchers.Default] dispatcher, so using
111- * `withContext(Dispatchers.IO) { ... }` does not lead to an actual switching to another thread —
112- * typically execution continues in the same thread.
110+ * This dispatcher shares threads with the [Default][Dispatchers.Default] dispatcher, so using
111+ * `withContext(Dispatchers.IO) { ... }` when already running on the [Default][Dispatchers.Default]
112+ * dispatcher does not lead to an actual switching to another thread — typically execution
113+ * continues in the same thread.
113114 * As a result of thread sharing, more than 64 (default parallelism) threads can be created (but not used)
114115 * during operations over IO dispatcher.
115116 */
You can’t perform that action at this time.
0 commit comments