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 {
107
107
*
108
108
* ### Implementation note
109
109
*
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.
113
114
* As a result of thread sharing, more than 64 (default parallelism) threads can be created (but not used)
114
115
* during operations over IO dispatcher.
115
116
*/
You can’t perform that action at this time.
0 commit comments