1
vote
3answers
54 views
Difference between a “coroutine” and a “thread”?
What are the differences between a "coroutine" and a "thread"?
1
vote
2answers
55 views
How can I do python/ruby/javascript style generators in actionscript?
I want to use coroutines in actionscript to implement a state machine.
I'd like to be able to do something like the following
function stateMachine():void
{
sendBytes(0xFFFF);
var …
3
votes
1answer
167 views
Fibers in C#: are they faster than iterators, and have people used them?
So I was chatting with a colleague about fibers and turned up this paper from 2003 that describes a implementation of coroutines in C# using the Fiber API.
The implementation of Yield in this paper …
6
votes
2answers
89 views
In python is there a way to check if a function is a “generator function” before calling it?
Lets say I have two functions:
def foo():
return 'foo'
def bar():
yield 'bar'
The first one is a normal function, and the second is a generator function. Now I want to write something like …
3
votes
2answers
194 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 …
4
votes
3answers
379 views
Python generators and co-routines.
Can someone provide me with a brief introduction on how to use Python generators to implement coroutines?
6
votes
7answers
330 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 …
0
votes
0answers
53 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 <= …
2
votes
2answers
167 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 …
7
votes
5answers
299 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 …
3
votes
2answers
190 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 …
8
votes
2answers
550 views
Coroutine vs Continuation vs Generator
What is the difference between a coroutine and a continuation and a generator ?
0
votes
3answers
128 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:
…
8
votes
4answers
249 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 …
4
votes
2answers
277 views
What is coroutine?
What is coroutine? How is it related to concurrency?
