File tree 1 file changed +3
-2
lines changed
kotlinx-coroutines-core/jvm/src
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,9 @@ public actual object Dispatchers {
125
125
*
126
126
* This dispatcher and its views share threads with the [Default][Dispatchers.Default] dispatcher, so using
127
127
* `withContext(Dispatchers.IO) { ... }` when already running on the [Default][Dispatchers.Default]
128
- * dispatcher does not lead to an actual switching to another thread — typically execution
129
- * continues in the same thread.
128
+ * dispatcher typically does not lead to an actual switching to another thread. In such scenarios,
129
+ * the underlying implementation attempts to keep the execution on the same thread on a best-effort basis.
130
+ *
130
131
* As a result of thread sharing, more than 64 (default parallelism) threads can be created (but not used)
131
132
* during operations over IO dispatcher.
132
133
*/
You can’t perform that action at this time.
0 commit comments