Closed enum-class closed 2 years ago
Hi, I actually use stackless coroutines throughout my code as you can see e.g. here. As far as I can see async_compose
is about simplifying the writing of stateful composed operations, that means, it is coroutine agnostic. In other words, you are free to use whatever completion token you like, including stackful coroutines like those provided by asio.
I have found that you use stateful version of coroutine in codes. (async_compose). Is there any special technical decision about using stackful against stackless coroutines ?