Is there a reason why the IO dispatcher doesn't use virtual threads if they are supported by the JVM?
s
Sam
08/17/2024, 4:19 PM
It's mentioned in this talk:
https://youtu.be/zluKcazgkV4▾
k
kevin.cianfarini
08/17/2024, 7:12 PM
The summary is that the coroutines folks don't want to lose the shared threads between the io dispatcher and the default dispatcher. To preserve that functionality they're waiting for an API from loom to be available that they can integrate with.