Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
4answers
2k views

Client-side javascript to support promises, futures, etc

I'm really interested in implementing Promises and related features in client-side Javascript. From what I've seen, the focus in implementing these technologies in Javascript seems to be on ...
15
votes
2answers
174 views

What is the difference between .resolve() and .promise()?

I'm digging into jQuery's deferred features. I've tried several examples on the internet. I understood its concept, but I don't understand the difference between resolve() and promise(). What are ...
13
votes
2answers
446 views

What are the differences between Deferred, Promise and Future?

What are the differences between Deferreds, Promises and Futures? Is there a generally approved theory behind all these three?
11
votes
2answers
715 views

How do Clojure futures and promises differ?

Both futures and promises block until they have calculated their values, so what is the difference between them?
7
votes
2answers
917 views

What is the benefit of a 'promise' abstraction in CommonJS?

I'm reading this article and the section on the promise abstraction seems a little overly complicated to me. The following is given as an example: requestSomeData("http://example.com/foo") // ...
5
votes
2answers
692 views

Does a wait on Scala Future block thread?

When I wait for result of Scala Future, does it behave more like receive, or like react, i.e. does it block a thread, or schedules a continuation after result if available?
4
votes
2answers
142 views

Using jQuery load with promises

I'm still trying to wrap my head around Deferreds and what not, so with this in mind I have a question on how to do the following. My team and I have 3 separate .load() methods that each go grab a ...
3
votes
1answer
97 views

How to get the argument for promise::set_exception(x)?

I found in several places on how a promise should be used references to copy_exception, but I can not find it in the current FDIS. Is there an alternative way on how to use set_exception() since those ...
3
votes
3answers
94 views

jquery deferred turn failure into success

So in using jQuery deferreds and $.when to load many objects in parallel. $.when( a.ajax(), b.ajax(), c.ajax() ).then( //do something when all are complete complete(); ); Now, b.ajax() will ...
2
votes
1answer
73 views

jQuery wait till all page animations are done

I know how to wait till an animation is done with $('#element').animate(speed,function(){ //code here }); and with multiple elements with $('#element1, #element2').promise().done(function(){ ...
2
votes
2answers
92 views

Use of CommonJS promises: rejection vs. exceptions

I have a function, downloadAsync(), that returns a CommonJS promise (using Q). It can fail in two ways: The file can already be downloaded, in which case we know immediately. The download process ...
2
votes
1answer
110 views

How do I reverse set_value() and 'deactivate' a promise?

I have a total n00b question here on synchronization. I have a 'writer' thread which assigns a different value 'p' to a promise at each iteration. I need 'reader' threads which wait for shared_futures ...
2
votes
1answer
153 views

Replacing system calls (syscalls) in Linux 2.6+

I'm looking into writing a userland threading library, since there seems to be no active work in this area, and I believe the C++0x promises and futures may give this model some power. Unfortunately, ...
2
votes
1answer
55 views

Unlambda d function

I think I need some elaboration on how the D function works in unlambda. Right now I'm trying to make a function (factorial) with the Y combinator, but it always results in some kind of infinite loop. ...
1
vote
3answers
150 views

Designing an async API in Python

(Note: this question is strictly about the design of the API, not about how to implement it; i.e. I only care about what the client of my API sees here, not what I have to do to make it work.) In ...
1
vote
1answer
63 views

What is the shorthand for setting up dependencies in jQuery deferred objects?

Do jQuery Deferred objects have any shorthand to set up dependencies, IE "when I'm done, that thing is done as well?" The below feels cumbersome: a = new jQuery.Deferred(); b = new ...
1
vote
2answers
247 views

Tail-recursion and scalaz promises

I am currently playing with Scalaz non-blocking futures aka. Promises. I am struggling to make the following function tail-recursive: @tailrec private def repeat( res: Promise[I] ):Promise[I] = res ...
1
vote
1answer
696 views

How do I do a deferred response from a node.js express action handler?

Using Express (for node.js) How do I write a response after a callback? The following is a minimal example. posix.cat is a function that returns a promise, up does something to the result, and I ...
0
votes
0answers
9 views

Is MS-WDVME is part of Open Specification Promise or Community Promise?

Is MS-WDVME is covered by the Open Specification Promise or the Community Promise?
0
votes
1answer
39 views

How to use mongoose Promise - mongo

Can someone give me an example on how to use a Promise with mongoose. Here is what I have, but its not working as expected: app.use(function (req, res, next) { res.local('myStuff', ...
0
votes
1answer
83 views

Is there any way to use jQuery's deferred / promise / when / then features for multiple ajax calls in a loop?

I've been reading how the newer jQuery features Deferred / promise / when / then can be used to simplify acting on multiple asynchronous events such as AJAX queries. But all of the examples I've been ...
0
votes
1answer
91 views

Using promises on Node.js on Windows

How does one use promises on Node.js running on Windows? For the life of me I can't seem to get any example to work... For example something like this doesn't work: var pinput = new Promise( ...