X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Fjavascript%2FfixedExample.js;h=55ed724d1e7e5bc4f0e204b5722cf480c1b5cad5;hb=84f201b8b2cf572a019a8103b6b3502a845d933e;hp=85f159d3bec21abe6345d56f0607a32f77dfe303;hpb=de2e7182cca6b34b000a09bf6d0ddcff4757db3a;p=poolifier.git diff --git a/examples/javascript/fixedExample.js b/examples/javascript/fixedExample.js index 85f159d3..55ed724d 100644 --- a/examples/javascript/fixedExample.js +++ b/examples/javascript/fixedExample.js @@ -6,13 +6,13 @@ const { } = require('poolifier') const pool = new FixedThreadPool(availableParallelism(), './yourWorker.js', { - errorHandler: (e) => console.error(e), + errorHandler: e => console.error(e), onlineHandler: () => console.info('worker is online') }) let poolReady = 0 let poolBusy = 0 -pool.emitter.on(PoolEvents.ready, () => poolReady++) -pool.emitter.on(PoolEvents.busy, () => poolBusy++) +pool.emitter?.on(PoolEvents.ready, () => poolReady++) +pool.emitter?.on(PoolEvents.busy, () => poolBusy++) let resolved = 0 const start = performance.now() @@ -23,11 +23,14 @@ for (let i = 1; i <= iterations; i++) { .then(() => { resolved++ if (resolved === iterations) { - console.info('Time taken is ' + (performance.now() - start)) - console.info('The pool was ready for ' + poolReady + ' times') - return console.info('The pool was busy for ' + poolBusy + ' times') + console.info( + `Time taken is ${(performance.now() - start).toFixed(2)}ms` + ) + console.info(`The pool was ready for ${poolReady} times`) + console.info(`The pool was busy for ${poolBusy} times`) + return pool.destroy() } - return null + return undefined }) - .catch((err) => console.error(err)) + .catch(err => console.error(err)) }