The series continue.
C++ coroutines: Cold-start coroutines
by Raymond Chen
From the article:
So far, our coroutine promise has implemented a so-called hot-start coroutine, which is one that begins running as soon as it is created. Another model for coroutines is the so-called cold-start coroutine, which is one that doesn’t start running until it is awaited...
Add a Comment
Comments are closed.