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
52 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 <= …
8
votes
2answers
550 views
Coroutine vs Continuation vs Generator
What is the difference between a coroutine and a continuation and a generator ?
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 …
