What are the differences between Deferreds, Promises and Futures? Is there a generally approved theory behind all these three?
feedback
|
|
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:
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):
To the promises formulated version (again, apologies, I'm not up to date on jQuery):
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. | ||||
|
feedback
|
AFAIK, they are basically the same when spoken in context of JavaScript. The literature might have slight nuances but basically, they are the same.
If you are trying to understand what is the theory behind this pattern, I have my thoughts summarized here: Promises in JavaScript | |||
|
feedback
|