JVM is finally getting support for continuations a...
# random
s
JVM is finally getting support for continuations and fibers…

https://www.youtube.com/watch?v=vbGbXUjlRyQ

This is a game changer IMO. No need to distinguish between blocking and non blocking call. A fiber never issues thread-blocking operations. Any call to a blocking operation becomes fiber-blocking rather than thread-blocking.
r
https://twitter.com/relizarov/status/1063078995674255360?s=09
Nitpick: in CS “continuation” roughly means “callback” — a function of one argument (the result of preceding computation). The concept shown here is definitely NOT a continuation. Very confusing to call it such.
u
So, Fibers = Cooroutines?
e
Roughly.