6
votes
7answers
282 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 (netw …
6
votes
5answers
269 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 ha …
2
votes
2answers
117 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 …
0
votes
0answers
42 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 && …
3
votes
3answers
288 views
Python generators and co-routines.
Can someone provide me with a brief introduction on how to use Python generators to implement coroutines?
8
votes
4answers
236 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 …
8
votes
2answers
478 views
Coroutine vs Continuation vs Generator
What is the difference between a coroutine and a continuation and a generator ?
0
votes
3answers
111 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 a …
3
votes
2answers
181 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, mo …
3
votes
2answers
249 views
What is coroutine?
What is coroutine? How is it related to concurrency?
5
votes
5answers
406 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 …
