8
votes
2answers
518 views
Coroutine vs Continuation vs Generator
What is the difference between a coroutine and a continuation and a generator ?
8
votes
4answers
244 views
Is it safe to yield from within a “with” block in Python (and why)?
The combination of coroutines and resource acquisition seems like it could have some unintended (or unintuitive) consequences.
The basic question is whether or not something like this works:
def …
6
votes
7answers
306 views
Design Pattern Alternative to Coroutines
Hi,
Currently, I have a large number of C# computations (method calls) residing in a queue that will be run sequentially. Each computation will use some high-latency service (network, disk...).
I …
6
votes
5answers
285 views
Coroutines for game design?
I've heard that coroutines are a good way to structure games (e.g., PEP 342: "Coroutines are a natural way of expressing many algorithms, such as simulations, games...") but I'm having a hard time …
5
votes
5answers
422 views
What are use-cases for a coroutine?
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 …
4
votes
3answers
344 views
Python generators and co-routines.
Can someone provide me with a brief introduction on how to use Python generators to implement coroutines?
4
votes
2answers
268 views
What is coroutine?
What is coroutine? How is it related to concurrency?
3
votes
2answers
177 views
Differences between Coroutines and GoTo???
I always read about the horrible thing that "goto" is. But, todaym reading about the google programming language "Go" http://golang.org/ and i see that it suports Coroutines (Goroutines).
The …
2
votes
2answers
140 views
Overhead of Mono Tasklet/Co-Routines
Hi,
What are the main performance overheads (gc/stack copying...) of the new Mono Continuations/Tasklet framework?
How does this overhead (coroutine performance / raw performance) compare to other …
2
votes
2answers
184 views
Seeking contrived example code: continuations!
So I believe I understand continuations now, at least on some level, thanks to the community scheme wiki and Learn Scheme in Fixnum Days.
But I'd like more practice -- that is, more example code I …
0
votes
0answers
46 views
Mono Continuations - Memory keeps increasing after store()
Hi,
Here's Mono Continuations' continuation_store (...). From looking at the code below, it appears as though store() follows these two branches:
cont->saved_stack && num_bytes <= …
0
votes
3answers
124 views
Language that supports serializing coroutines
I don't think such support exists in current languages. I think what I want to do could be solved by a "workflow engine". But the problem I have with workflow's is generally they are:
…
