Is there a good implementation of continuations in Java?
If so, what is the overhead like? The JVM wasn\'t designed with these sort of things in mind, right? So is t
If you don't mind implicit continuations, Kilim is a great option. It works by processing annotated methods and generating the continuations in bytecode for you. Obviously it does a lot more since it's a framework, but if you want the (excellent) performance of thread-safe continuations, it's worth a look.