X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Fjavascript%2FdynamicExample.js;h=2783c171774e5d3b77cd16179d4a258d10ef9572;hb=b7567280e5ac235db6f45488b057abfbe55c38b2;hp=ad79ba20294135dfc4569f1795151ae24f8ea3fc;hpb=7a923e5bc16ae3524c51bedd70c65ce6cc556fdc;p=poolifier.git diff --git a/examples/javascript/dynamicExample.js b/examples/javascript/dynamicExample.js index ad79ba20..2783c171 100644 --- a/examples/javascript/dynamicExample.js +++ b/examples/javascript/dynamicExample.js @@ -17,9 +17,9 @@ const pool = new DynamicThreadPool( let poolFull = 0 let poolReady = 0 let poolBusy = 0 -pool.emitter.on(PoolEvents.full, () => poolFull++) -pool.emitter.on(PoolEvents.ready, () => poolReady++) -pool.emitter.on(PoolEvents.busy, () => poolBusy++) +pool.emitter?.on(PoolEvents.full, () => poolFull++) +pool.emitter?.on(PoolEvents.ready, () => poolReady++) +pool.emitter?.on(PoolEvents.busy, () => poolBusy++) let resolved = 0 const start = performance.now() @@ -30,10 +30,13 @@ 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 full for ' + poolFull + ' times') - 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 full for ${poolFull} times`) + console.info(`The pool was ready for ${poolReady} times`) + console.info(`The pool was busy for ${poolBusy} times`) + return pool.destroy() } return null })