Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 1x 1x | const debug = require('debug')('SimpleZSTDOven');
class Oven {
#poolOptions;
#queue;
#factory;
#destroy;
constructor(poolOptions, factory, destroy) {
this.#poolOptions = poolOptions;
this.#queue = [];
this.#factory = factory;
this.#destroy = destroy;
for (let i = 0; i < poolOptions.targetSize; i += 1) {
this.#createResource();
}
}
async #createResource() {
debug('createResource?');
if (this.#queue.length > this.#poolOptions.targetSize) {
debug('createResource call factory');
this.#queue.push(this.#factory());
}
}
async acquire() {
debug('acquire');
if (this.#queue.length === 0) {
this.#createResource(); // async attempt to add another process
debug('acquire from queue');
return this.#queue.pop();
}
debug('acquire create on demand');
return this.factory();
}
async destroy() {
debug('destroy');
while (this.#queue.length > 0) {
this.#destroy(this.#queue.pop());
}
}
}
module.exports = Oven;
|