From 443bb84cd6cb99e944c4ecd4e79d5151776536e3 Mon Sep 17 00:00:00 2001 From: Julian Viereck Date: Wed, 7 Sep 2011 17:15:35 -0700 Subject: [PATCH] Add very simple Promise object --- worker.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/worker.js b/worker.js index 61e4c20b9..9db894d32 100644 --- a/worker.js +++ b/worker.js @@ -53,6 +53,38 @@ var WorkerPage = (function() { // This holds a list of objects the IR queue depends on. var Objects = {}; +var Promise = (function() { + function Promise(name) { + this.name = name; + this.isResolved = false; + }; + + Promise.prototype = { + resolve: function(data) { + if (this.isResolved) { + throw "A Promise can be resolved only once"; + } + + this.isResolved = true; + this.data = data; + var callbacks = this.callbacks; + + for (var i = 0; i < callbacks.length; i++) { + callbacks[i].call(null, data); + } + }, + + then: function(callback) { + // If the promise is already resolved, call the callback directly. + if (this.isResolved) { + callback.call(null, this.data); + } else { + this.callbacks.push(callback); + } + } + } +})(); + var WorkerPDFDoc = (function() { function constructor(data) { this.data = data;