Tagged Questions

3
votes
2answers
163 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 (Gorou …
6
votes
7answers
295 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
281 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
128 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
43 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 && …
4
votes
3answers
324 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
243 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
501 views

Coroutine vs Continuation vs Generator

What is the difference between a coroutine and a continuation and a generator ?
0
votes
3answers
122 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
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, mo …
3
votes
2answers
263 views

What is coroutine?

What is coroutine? How is it related to concurrency?
5
votes
5answers
414 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 …