Hacker News new | ask | show | jobs
by anonymousDan 695 days ago
Does Java's implementation of virtual threads perform any kind of work stealing when a particular physical thread has no virtual threads to run (e.g. they are all blocked on I/O)?
1 comments

It does. They get scheduled onto the ForkJoinPool which is a work stealing pool.