In computer science and programming, a continuation is an abstract representation of the control state. A continuation reifies an instance of a computational process at a given point in the process's execution. It contains information such as the process's current stack (including all data whose ...
1
vote
2answers
81 views
Using async/await, when do continuations happen?
I am attempting to use async/await in a very large already existing synchronous code base. There is some global state in this code base that works fine, if kludgy, in a synchronous context, but it ...
1
vote
2answers
57 views
akka dataflow and side effects
I'm working with akka dataflow and I'd like to know if there is a way to cause a particular block of code to wait for the completion of a future, without explicitly using the value of that future.
...
0
votes
1answer
43 views
Conditional exception raising in a flow block
While using Akka's data-flow DSL, I have twice encountered a need to throw an exception inside future, conditionally. This is how I am doing it:
flow {
// ...
if (someCond)
shiftUnit(throw ...
2
votes
0answers
27 views
Jetty Continuation handler registration
I'm writing a servlet that runs commands on an exsisting java system ("MyJavaSystem") and write output to user.
The commands executed are asynchronous and servlet must return each result line to ...
6
votes
4answers
165 views
Why does not exist a primitive `call-with-current-continuations` in Common Lisp?
Lately I've been investigating the differences between Scheme and Common Lisp regarding the approach that these two languages have towards continuations.
I've noticed that the Common Lisp approach ...
1
vote
1answer
108 views
why scala doesn't make tail call optimization?
Just playing with continuations. The goal is to create function which will receive another function as parameter, and execution amount - and return function which will apply parameter given amount ...
9
votes
4answers
141 views
scheme continuations for dummies
For the life of me, I can't understand continuations. I think the problem stems from the fact that I don't understand is what they are for. All the examples that I've found in books or online are very ...
0
votes
1answer
102 views
Synchronously run a task in the same thread (no threadpool) with a timeout
I want to use Task<> type, but not with TPL, but with .NET4.5/C#async instead.
Thing is, I have some requirements for my case:
I want the task to be run synchronously (some people recommend ...
2
votes
1answer
65 views
Using call/cc to make a loop. let vs begin
Both of the following code blocks should (in my mind) be infinite loops
This works
(define call/cc call-with-current-continuation)
(define l 0)
(define i 0)
((lambda ()
(call/cc
(lambda (k)
...
15
votes
1answer
315 views
Idiomatic Scala translation of Kiselyov's zippers?
Oleg Kiselyov showed how to make a zipper from any traversable by using delimited continuations. His Haskell code is quite short:
module ZipperTraversable where
import qualified Data.Traversable ...
4
votes
0answers
120 views
Does Scala continuation plugin support nested shift?
I am going through the following Shift/Reset tutorial: http://www.is.ocha.ac.jp/~asai/cw2011tutorial/main-e.pdf.
I got pretty good results so far in translating the OchaCaml examples to Scala (all ...
0
votes
1answer
53 views
Why do I get 'cps-transformed unexpectedly' message on Scala continuations
So I have the following code (doing exercise 4 of that tutorial):
import scala.util.continuations._
object Main {
def times(lst: List[Int]): Int@cps[Int] = lst match {
case Nil => 1
case ...
2
votes
1answer
105 views
Inconsistent behavior in Scala CPS framework
I'm trying to build a coroutine framework to enable batch data fetching by stepping through each data-dependent function in parallel. Here is what I have so far: http://pastie.org/7147798
This ...
0
votes
0answers
92 views
Asynchronous build tool for NodeJS
Anybody heard of a build tool that takes advantage of Node's non-blocking I/O?
1
vote
2answers
158 views
CPS library for nice dataflow with Scala 2.10 futures
I am looking for a light weight library that allows me, instead of writing:
val future1 = process1()
future1.onSuccess { process2() }
the following:
val future1 = process1()
future1.await()
...
1
vote
1answer
201 views
Counting nodes in a Tree
fighting with f# - the fight is in the realm of Trees - specifically to count the number of nodes. This is of real interest as the program I would like to eventually code in F# concerns multi-way ...
9
votes
2answers
399 views
Choosing between continuation passing style and memoization
While writing up examples for memoization and continuation passing style (CPS) functions in a functional language, I ended up using the Fibonacci example for both. However, Fibonacci doesn't really ...
2
votes
3answers
257 views
Implementing a yield iterator of object properties in JavaScript
I need a true iterator that will work like this:
var haystackObj = {
'needle': 'abc',
'prop2': {
'prop1': 'def',
'prop2': {
...
4
votes
1answer
119 views
How to translate shift/reset into delimcc?
I'm studying Oleg's and Asai's delimited continuations "for dummies" paper(http://pllab.is.ocha.ac.jp/~asai/cw2011tutorial/main-e.pdf) but this paper uses the shift/reset formalism instead of the ...
5
votes
1answer
213 views
Why does null.asInstanceOf[<some CPS annotated type>] fail?
Is there any logical reason why null.asInstanceOf[<some CPS annotated type>] fails to compile?
For context, see this github issue thread.
2
votes
1answer
262 views
Scala 2.10 and Continuations (akka-dataflow) in the sbt console
What is the status of the continuations plugin in Scala 2.10; I'm slightly confused. The following setup is in the Akka 2.2-SNAPSHOT documentation:
autoCompilerPlugins := true,
libraryDependencies ...
1
vote
1answer
180 views
jetty continuation - suspended requests - resources
In my project I need to create a proxy server which will be able to shape traffic. The main issue is to have different queues with different priorities which will provide access to further servers.
...
2
votes
1answer
214 views
dynamic programming and continuation passing style
for simple problems like fibonacci, writing CPS is relatively straightforward
let fibonacciCPS n =
let rec fibonacci_cont a cont =
if a <= 2 then cont 1
else
fibonacci_cont (a - ...
13
votes
1answer
423 views
What's the difference between a continuation and a callback?
I've been browsing all over the web in search of enlightenment about continuations, and it's mind boggling how the simplest of explanations can so utterly confound a JavaScript programmer like myself. ...
0
votes
1answer
158 views
Scala Continuations: Suspend without wait/sleep()
Okay I'm just about ready to give up on this.
I would like to save the state of a continuation (done using shift).
However, the caveat is that the code AFTER the reset should not be executed. ...
2
votes
1answer
163 views
jetty continuation and unexplainable memory usage pattern
I have been struggling with something that looks very basic, the problem is related to use of Jetty continuations for long poll.
For the sake of simplicity, i have removed all my application specific ...
1
vote
0answers
61 views
making sure Android app operates as expected when when user leaves GUI and comes back
I have written an Android app that plays audio file.
On the GUI I have a STOP button that when pressed stops playing of the audio. If I stay in the app GUI I can stop and start as many time as I want ...
1
vote
1answer
78 views
Continuation in Scheme with lambda with no arguments
So I am dealing with continuations and have something like this:
(or
(call/cc (lambda (cont)
...
(if ( ... )
(cons randomList (lambda() (cont #f)))
...
9
votes
8answers
508 views
How to do structured programming using blocks in Objective-C
When using methods which return blocks they can be very convenient.
However, when you have to string a few of them together it gets messy really quickly
for instance, you have to call 4 URLs in ...
3
votes
2answers
108 views
Letrec and reentrant continuations
I have been told that the following expression is intended to evaluate to 0, but that many implementations of Scheme evaluate it as 1:
(let ((cont #f))
(letrec ((x (call-with-current-continuation ...
0
votes
1answer
109 views
Exception continuation doesn't work with completion continuation
I have this simple TPL code:
var t = Task.Factory.StartNew(() => { throw null; })
.ContinueWith((ant) => { Console.WriteLine("Success"); },
...
0
votes
0answers
135 views
Continuations in Play 2.x?
Just retranslating this question from google groups to a wider audience:
Are there any plans to support continuations (suspending/resuming
execution of a request using await()) in Play 2.x? If ...
1
vote
2answers
53 views
Which is the current continuation in the following expression?
In the expression (call/cc (lambda (k) (k 12))), there are three continuations: (k 12), (lambda (k) (k 12)), and (call/cc (lambda (k) (k 12))). Which one is the "current continuation"?
And ...
4
votes
2answers
309 views
Scala Continuations - Why can't my shifted call be inside a try-catch block?
I'm new to Scala continuations, and relatively new to the scala language in general.
I tried playing with Scala continuations and wrote the following code:
case class MyException(msg:String) extends ...
12
votes
1answer
436 views
Continuation passing style representation of types
Suppose we have a monad, defined by return, (>>=) and the set of laws. There is a data type
newtype C m a = C { unC ∷ forall r. (a → m r) → m r }
also known as Codensity. C m a ≅ m a given ...
5
votes
1answer
324 views
Task Continuation (OnlyOnFaulted) still gets unobserved exception
I have a task with a continuation to handle errors:
var uiScheduler = TaskScheduler.FromCurrentSynchronizationContext();
var loadTask = Task<List<OrderItemViewModel>>.Factory.StartNew(() ...
1
vote
2answers
143 views
The Little Schemer: stuck on multiinsertLR&co example
I was able to grok the multirember&co function after some work, but I can't really make much sense out of the following multiinsertLR&co code (p. 143):
(define multiinsertLR&co
(lambda ...
20
votes
4answers
497 views
Constructing efficient monad instances on `Set` (and other containers with constraints) using the continuation monad
Set, similarly to [] has a perfectly defined monadic operations. The problem is that they require that the values satisfy Ord constraint, and so it's impossible to define return and >>= without ...
17
votes
3answers
510 views
Coroutines or continuations for Web programming in Python and Ruby. Why not? [closed]
The question is: why aren't continuations (in Ruby) and coroutines (in Python) more widely used for Web programming?
Server-side web programming is made difficult by the problem of preserving state ...
4
votes
1answer
61 views
Implement a return function
I'm trying to implement a return function in Scheme R6RS. I want something such that:
(lambda ()
(do-some-job-before)
(return some-value)
(do-some-job-after))
executes (do-some-job-before), ...
2
votes
1answer
291 views
How to define multiple flow executors for differents flow and disable continuation snapshot for some flows?
I'm working on a huge project and we would like to have a different management of continuation for some flows.
We want to be able to use the continuation snapshots (those that permit the use of the ...
0
votes
1answer
93 views
difference between closures and continuations
Can someone please explain the difference between closures and continuations? The corresponding articles in wikipedia do not really compare the differences between the two.
0
votes
0answers
380 views
Unhandled AggregateException on Tasks Continuation thrown on another OS
I'm getting a strange behavior in a winForms application while testing to see how it responds on different OS.
The long running operation where the unhandled AggregateException is thrown ( when ...
2
votes
2answers
151 views
List Iterator using ContT
I have a simple list that I would like to iterate over "yield"ing between each element and printing that element to the output. I am trying to use the ContT monad to do this but running into issues. ...
1
vote
4answers
489 views
Show form at task completion in UI thread
I have a task which, when completed, is supposed to continue with another task that shows a winform (the winform was previously initialised on the UI thread, so it does have a handle).
private ...
0
votes
0answers
310 views
Are you using Apache Javaflow? [closed]
I've been looking around for a Java continuations implementation whose functionality is almost exactly as described in the Javaflow tutorial: http://commons.apache.org/sandbox/javaflow/tutorial.html
...
4
votes
2answers
157 views
Is there a way to capture the continuations in a do notation?
Since the following do block:
do
x <- foo
y <- bar
return x + y
is desugared to the following form:
foo >>= (\x -> bar >>= (\y -> return x + y))
aren't \x -> ... ...
5
votes
1answer
155 views
Why do continuations not have useful arity?
Consider the following code:
(call-with-values
(lambda ()
(call/cc (lambda (k)
(k k k))))
(lambda (x y)
(procedure-arity y)))
It's pretty obvious here that the continuation ...
2
votes
1answer
124 views
my CPS is right?
in "The Scheme Programming Language 4th Edition", there is a example as below:
(define product
(lambda (ls)
(call/cc
(lambda (break)
(let f ([ls ls])
(cond
...
0
votes
2answers
153 views
chaining array of tasks with continuation
I have a Task structure that is a little bit complex(for me at least). The structure is:
(where T = Task)
T1, T2, T3... Tn. There's an array (a list of files), and the T's represent tasks created ...
