You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
function CallbackFiller() {
|
|
|
|
this.queues = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
CallbackFiller.prototype.fill = function(key, err, data) {
|
|
|
|
var waiting = this.queues[key];
|
|
|
|
delete this.queues[key];
|
|
|
|
|
|
|
|
if (waiting && waiting.length) {
|
|
|
|
waiting.forEach(function(task) {
|
|
|
|
(task.cb)(err, data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
CallbackFiller.prototype.has = function(key) {
|
|
|
|
return this.queues[key];
|
|
|
|
};
|
|
|
|
|
|
|
|
CallbackFiller.prototype.add = function(key, funcObj) {
|
|
|
|
if (this.queues[key]) {
|
|
|
|
this.queues[key].push(funcObj);
|
|
|
|
} else {
|
|
|
|
this.queues[key] = [funcObj];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = CallbackFiller;
|