X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Fjavascript%2FdynamicExample.js;h=e170f59c00d35b24e54693da0a96f909f5dc73b8;hb=4124a7bbabef78bb438818b3a5f02e65ee4dd875;hp=21fe9050ead512abecc90def3ccc61c6668db433;hpb=de2e7182cca6b34b000a09bf6d0ddcff4757db3a;p=poolifier.git diff --git a/examples/javascript/dynamicExample.js b/examples/javascript/dynamicExample.js index 21fe9050..e170f59c 100644 --- a/examples/javascript/dynamicExample.js +++ b/examples/javascript/dynamicExample.js @@ -10,16 +10,16 @@ const pool = new DynamicThreadPool( availableParallelism(), './yourWorker.js', { - errorHandler: (e) => console.error(e), + errorHandler: e => console.error(e), onlineHandler: () => console.info('worker is online') } ) 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,12 +30,15 @@ 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 + return undefined }) - .catch((err) => console.error(err)) + .catch(err => console.error(err)) }