How does a virtual thread know that its blocking operation has done?

47 Views Asked by At

As I understand, a virtual thread is actually a "task", not a thread. A virtual thread is executed by carrier threads inside a ForkJoinPool. When a virtual thread encounters blocking I/O and goes into a waiting state, it stops its work and saves its stack frame to the heap. The carrier thread that was actually executing the task is now free to handle other tasks. This action is called "unmount". When the blocking I/O is complete, the virtual thread that was unmounted will wait in the queue of the carrier thread with its stack frame stored in the heap to resume work, and when it is its turn, work will resume. This action is called "mount".

I'm wondering how the completion of the blocking operation can be detected when there is no thread actually waiting for it.

0

There are 0 best solutions below