What is the difference between a coroutine and a continuation and a generator ?
|
4
|
|
|
|
|
|
Coroutine is one of several procedures that take turns doing their job and then pause to give control to the other coroutines in the group. Continuation is a "pointer" to the current position in your program, including calling stack and all variables. You can reuse that pointer to "go back in time" when needed. Generator (in .NET) is a language construct that can spit out a value, "pause" execution of the method and then proceed from the same point when asked for the next value. |
||||
|
|
|
I'll start with generators, seeing as they're the simplest case. As @zvolkov mentioned, they're functions/objects that can be repeatedly called without returning, but when called will return (yield) a value and then suspend their execution. When they're called again, they will start up from where they will start up from where they last suspended execution and do their thing again. A generator is essentially a cut down (asymmetric) coroutine. The difference between a coroutine and generator is that a coroutine can accept arguments after it's been initially called, whereas a generator can't. It's a bit difficult to some up with a trivial example of where you'd use coroutines, but here's my best try. Take this (made up) Python code as an example.
An example of where coroutines are used is lexers and parsers. Without coroutines in the language or emulated somehow, lexing and parsing code needs to be mixed together even though they're really two separate concerns. But using a coroutine, you can separate out the lexing and parsing code. (I'm going to brush over the difference between symmetric and asymmetric coroutines. Suffice it to say that they're equivalent, you can convert from one to the other, and asymmetric coroutines--which are the most like generators--are the easier to understand. I was outlining how one might implement asymmetric coroutines in Python.) Continuations are actually quite simple beasts. All they are functions representing another point in the program which, if you call it, will cause execution to automatically switch to the point that function represents. You use very restricted versions of them every day without even realising it. Exceptions, for instance, can be thought of as a kind of inside-out continuation. I'll give you a Python based pseudocode example of a continuation. Say Python had a function called
What would happen is that The result of all of this would be that our hypothetical Python variant would print '42'. I hope that helps, and I'm sure my explanation can be improved on quite a bit! |
|||
|
|
