ramirez/src/queue.js

41 lines
726 B
JavaScript

class Queue {
constructor() {
this.running = false;
this.queue = [];
}
add(fn) {
const promise = new Promise(resolve => {
this.queue.push(async () => {
await Promise.resolve(fn());
resolve();
});
if (! this.running) this.next();
});
return promise;
}
next() {
this.running = true;
if (this.queue.length === 0) {
this.running = false;
return;
}
const fn = this.queue.shift();
new Promise(resolve => {
// Either fn() completes or the timeout of 10sec is reached
fn().then(resolve);
setTimeout(resolve, 10000);
}).then(() => this.next());
}
}
module.exports = {
Queue,
messageQueue: new Queue()
};