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

link|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  
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
2  
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 – ashmokhberi Jul 24 '11 at 18:25
show 2 more comments
feedback

2 Answers

up vote 7 down vote accepted

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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