The concept of a coroutine sounds very interesting, but I don't know, if it makes sense in a real productive environment? What are use-cases for coroutines, that can be solved more elegant, simpler or more efficient as with other methods?
|
|
True coroutines require support from your tooling - they need to be implemented by the compiler and supported by the underlying framework. One real world example of Coroutines is found with the "yield return" keyword provided in C# 2.0, which allows you to write a method that returns multiple values for looping. The "yield return" does have limitations, however - the implementation uses a helper class to capture state, and it only supports a specific case of coroutine as generator (iterator). In the more general case, the advantage of Coroutines is that they make certain state based computations much easier to express and easier to understand - implementing a state machine as a set of coroutines can be more elegant than more common approaches. But, doing this requires support and tooling that doesn't yet exist in C# or Java. |
||
|
|
|
As a more-specific example in the producer/consumer line, something as simple as the humble batch reporting program could actually use co-routines. The key hint for that example is having a nontrivial work to consume input data (e.g. parsing data or accumulating charges and payments on an account), and non-trivial work to produce the output. When you have these characteristics:
then coroutines and queues are both nice techniques to have at your disposal. |
||
|
|
|
|
Lots of them, for example:
The pipeline above is exactly a coroutine: the The thing about coroutines is that they are most often now used either in more constrained patterns, like the Python generators mentioned, or as pipelines. If you want to look more at them, see the Wikipedia articles, especially on coroutines and iterators. |
||
|
|
|
|
Some good answers describing what coroutines are. But for an actual use-case. Take a web server. It has multiple simultaneous connections, and it wants to schedule reading and writing all of them. This can be implemented using coroutines. Each connection is a coroutine that reads/writes a small amount of data, then "yields" control to the scheduler, which passes to the next coroutine (which does the same thing) as we cycle through all the available connections. |
||
|
|
|
|
Coroutines are useful to implement producer/consumer patterns. For example, Python introduced coroutines in a language feature called generators, which was intended to simplify the implementation of iterators. They can also be useful to implement cooperative multitasking, where each task is a coroutine that yields to a scheduler/reactor. |
||||||||
|
