Skip to content

Instantly share code, notes, and snippets.

@apanzerj
Last active August 29, 2015 14:09
Show Gist options
  • Save apanzerj/e8b99ad14b92f84c4fb8 to your computer and use it in GitHub Desktop.
Save apanzerj/e8b99ad14b92f84c4fb8 to your computer and use it in GitHub Desktop.
queue processing concept
var QueueProcessor = function () {
this.queue = function () {
return this._queue;
};
this._queue = [];
this.queueAdd = function (item) {
this._queue.push(item);
this._queue;
};
this.process = function () {
this._currentItem = this._queue.shift();
if (eval(this._currentItem())) {
console.log("Executed Successfull\n" + this._currentItem);
} else {
console.error("Fail\n" + this._currentItem);
}
};
this.currentItem = [];
this._nextUp = function () {};
}
var m = new QueueProcessor();
$.each($("p"), function (i, j) {
m.queueAdd(function () {
$(j).html("asdf" + $(j).html());
return true;
});
});
q = setInterval(function () {
m.process()
}, 1000)
m.queueAdd(function () {
clearInterval(q);
return false;
})
m.queueAdd(function () {
console.log("This shouldn't run")
})
// http://jsfiddle.net/5gLrhsba/8/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment