Implementing coroutines in Java

前端 未结 7 1755
你的背包
你的背包 2020-12-04 07:22

This question is related to my question on existing coroutine implementations in Java. If, as I suspect, it turns out that there is no full implementation of coroutines cur

7条回答
  •  执笔经年
    2020-12-04 07:53

    I have a Coroutine class that I use in Java. It is based on threads and using threads has the advantage of allowing parallel operation, which on multicore machines can be an advantage. Therefore you might want to consider a thread based approach.

提交回复
热议问题