Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the differences between Deferreds, Promises and Futures? Is there a generally approved theory behind all these three?

share|improve this question
It might not be clear what you're talking about. In Javascript, there are no such things. If your question is related to jQuery, please add appropriate tag. Thank you. – duri Jul 23 '11 at 15:20
1  
1  
I don't think this has anything to do with jQuery... – BoltClock Jul 23 '11 at 15:26
7  
Worth reading this: msdn.microsoft.com/en-us/scriptjunkie/gg723713 – jfriend00 Jul 23 '11 at 15:58
4  
I have not used them myself but here is a pretty good intro on wikipedia en.wikipedia.org/wiki/Futures_and_promises. Although I don't fully understand the use case properly. In a async event driven language like javascript. At first glance I can't see what they offer over callbacks, apart from maybe a cleaner api. I would love it if someone could provide an example use case, and show how these concepts are applied, and why callbacks would be an inefficient solution. @duri this has nothing to do with jQuery. Can the jQuery tag be removed please – AshHeskes Jul 24 '11 at 18:25
show 3 more comments

3 Answers

up vote 13 down vote accepted

In light of apparent dislike for how I've attempted to answer the OP's question. The literal answer is, a promise is something shared w/ other objects, while a deferred should be kept private. Primarily, a deferred (which generally extends Promise) can resolve itself, while a promise might not be able to do so.

If you're interested in the minutiae, then examine Promises/A+.


So far as I'm aware, the overarching purpose is to improve clarity and loosen coupling through a standardized interface. See suggested reading from @jfriend00:

Rather than directly passing callbacks to functions, something which can lead to tightly coupled interfaces, using promises allows one to separate concerns for code that is synchronous or asynchronous.

Personally, I've found deferred especially useful when dealing with e.g. templates that're populated by asynchronous requests, loading scripts that have networks of dependencies, and providing user feedback to form data in a non-blocking manner.

Indeed, compare the pure callback form of doing something after loading CodeMirror in JS mode asynchronously (apologies, I've not used jQuery in a while):

/* assume getScript has signature like: function (path, callback, context) 
   and listens to onload && onreadystatechange */
$(function () {
   getScript('path/to/CodeMirror', getJSMode);

   // onreadystate is not reliable for callback args.
   function getJSMode() {
       getScript('path/to/CodeMirror/mode/javascript/javascript.js', 
           ourAwesomeScript);
   };

   function ourAwesomeScript() {
       console.log("CodeMirror is awesome, but I'm too impatient.");
   };
});

To the promises formulated version (again, apologies, I'm not up to date on jQuery):

/* Assume getScript returns a promise object */
$(function () {
   $.when(
       getScript('path/to/CodeMirror'),
       getScript('path/to/CodeMirror/mode/javascript/javascript.js')
   ).then(function () {
       console.log("CodeMirror is awesome, but I'm too impatient.");
   });
});

Apologies for the semi-psuedo code, but I hope it makes the core idea somewhat clear. Basically, by returning a standarized promise, you can pass the promise around, thus allowing for more clear grouping.

share|improve this answer
1  
While this answer might be useful, it does not factually address the question: so-called deferreds are either futures or promises, depending on the implementation. – Martin Källman Nov 8 '12 at 9:53
@MartinKällman You're right! I hadn't revisited this in a while and have learned a bit. I'll post a separate answer below, but leave this since people seem to have benefited from the usage example. – jnewman Nov 8 '12 at 14:32
@MartinKällman, considered writing a new answer. However, I think the OP actually wanted to know what Promises and Deferreds are for. The answer to his actual question would be, roughly, "deferreds can resolve their-self. AFAIK, the theory behind promises and deferreds comes from [Functional Reactive Programming|haskell.org/haskellwiki/Functional_Reactive_Programming], which is a technique for flattening callbacks." – jnewman Feb 11 at 5:32

What are the differences between Deferreds, Promises and Futures?

AFAIK, they are basically the same when spoken in context of JavaScript. The literature might have slight nuances but basically, they are the same.

Is there a generally approved theory behind all these three?

If you are trying to understand what is the theory behind this pattern, I have my thoughts summarized here: Promises in JavaScript

share|improve this answer
Your link is no longer publicly accessible. – Cymen Oct 27 '12 at 7:20
@Cymen Thanks for pointing that out. Fixed. – Rajat Oct 27 '12 at 7:49
+1, your article is great. – GarciaWebDev Nov 2 '12 at 15:18

What really made it all click for me was this presentation by Domenic Denicola.

In a github gist, he gave the description I like most, it's very concise:

The point of promises is to give us back functional composition and error bubbling in the async world.

In other word, promises are a way that lets us write asynchronous code that is almost as easy to write as if it was synchronous.

Consider this example, with promises:

getTweetsFor("domenic") // promise-returning async function
    .then(function (tweets) {
        var shortUrls = parseTweetsForUrls(tweets);
        var mostRecentShortUrl = shortUrls[0];
        return expandUrlUsingTwitterApi(mostRecentShortUrl); // promise-returning async function
    })
    .then(doHttpRequest) // promise-returning async function
    .then(
        function (responseBody) {
            console.log("Most recent link text:", responseBody);
        },
        function (error) {
            console.error("Error with the twitterverse:", error);
        }
    );

It works as if you were writing this synchronous code:

try {
    var tweets = getTweetsFor("domenic"); // blocking
    var shortUrls = parseTweetsForUrls(tweets);
    var mostRecentShortUrl = shortUrls[0];
    var responseBody = doHttpRequest(expandUrlUsingTwitterApi(mostRecentShortUrl)); // blocking x 2
    console.log("Most recent link text:", responseBody);
} catch (error) {
    console.error("Error with the twitterverse: ", error);
}

(If this still sounds complicated, watch that presentation!)

Regarding Deferred, it's a way to .resolve() or .reject() promises. In the Promises/B spec, it is called .defer(). In jQuery, it's $.Deferred().

Please note that, as far as I know, the Promise implementation in jQuery is broken (see that gist), at least as of jQuery 1.8.2.
It supposedly implements Promises/A thenables, but you don't get the correct error handling you should, in the sense that the whole "async try/catch" functionality won't work. Which is a pity, because having a "try/catch" with async code is utterly cool.

If you are going to use Promises (you should try them out with your own code!), use Kris Kowal's Q. The jQuery version is just some callback aggregator for writing cleaner jQuery code, but misses the point.

Regarding Future, I have no idea, I haven't seen that in any API.

share|improve this answer
Very good presentation! – Eran Medan Feb 6 at 21:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.