6
votes
3answers
295 views
What are Scala continuations and why use them?
So I just finished "Programming in Scala" and I've been looking into the changes between Scala 2.7 and 2.8. The one that seems to be the most important is the continuations plugin …
4
votes
1answer
70 views
How does PLTScheme Catch errors?
I am amazed by the "error" function in PLTScheme.
If I have a division by zero, it doesnt do any other recursion and just comes out of the call stack and give me an error.
Is th …
5
votes
5answers
354 views
Is there a fast language that supports portable continuations?
I'm looking for a fast language (ie. a language that can be compiled natively to achieve performance not more than 3 or 4 times slower than C), which supports portable continuation …
9
votes
4answers
452 views
Is it possible to programmatically construct a Python stack frame and start execution at an arbitrary point in the code?
Is it possible to programmatically construct a stack (one or more stack frames) in CPython and start execution at an arbitrary code point? Imagine the following scenario:
You ha …
1
vote
1answer
85 views
Which way is best, to implement Comets in a Java Servlet
I want to write an aplication that uses the Comets pattern - that is a request that can be responded to when an event occurs on the server, rather than only as a response to an imm …
3
votes
3answers
132 views
Continuations in Java
Is there a good implementation of continuations in Java?
If so, what is the overhead like? The JVM wasn't designed with these sort of things in mind, right? So is this kind of goi …
1
vote
4answers
147 views
Cons of first class continuations
What are some of the criticisms leveled against exposing continuations as first class objects?
I feel that it is good to have first class continuations. It allow complete control …
12
votes
11answers
869 views
Looking for examples of “real” uses of continuations
I'm trying to grasp the concept of continuations and I found several small teaching examples like this one from the Wikipedia article:
(define the-continuation #f)
(define (test) …
6
votes
7answers
293 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 …
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 && …
0
votes
2answers
62 views
Methods for side-effects in purely functional programming languages
At the moment I'm aware of the following methods to integrate side-effects into purely functional programming languages:
effect systems
continuations
unique types
monads
Monads …
0
votes
2answers
113 views
What are “Jetty 6 Continuations” and how do they compare to the continuations found in programming languages?
I'm looking for an answer that describes a "continuataion' mechanism in a web server vs. a programming language.
My understanding is that using continuations, it is trivial to hav …
3
votes
4answers
434 views
Are continuations monads?
Can continuations be said to be monads? Are they a subset of monads or are they simply a way of implementing monads?
Edit: Or maybe I got it wrong and monads is a more abstract co …
1
vote
2answers
122 views
Specifics of call/cc
This is related to http://stackoverflow.com/questions/612761/what-is-call-cc, but I didn't want to hijack this question for my own purposes, and some of its arguments like the anal …
2
votes
2answers
161 views
Non-determinstic choice with amb-operator
Is it possible to implement McCarthy's amb-operator for non-deterministic choice in C#?
Apparently .NET lacks continuation support but yield return could be useful. Would this be …
