X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=examples%2FdynamicExample.js;h=59d992a67e202387d2b3dec6e6b6538e326a9985;hb=25f5b5de1c522d29f7a16597245a2f7c9434b124;hp=22b4f19c4b7394c92b1b91b7d8ffad432e810e4c;hpb=60fbd6d6188b0902d157fd0cde04d6af3a391e32;p=poolifier.git diff --git a/examples/dynamicExample.js b/examples/dynamicExample.js index 22b4f19c..59d992a6 100644 --- a/examples/dynamicExample.js +++ b/examples/dynamicExample.js @@ -1,20 +1,27 @@ -const { DynamicThreadPool } = require('poolifier') +const { DynamicThreadPool, PoolEvents } = require('poolifier') let resolved = 0 -let maxReached = 0 +let poolFull = 0 +let poolBusy = 0 const pool = new DynamicThreadPool(10, 20, './yourWorker.js', { errorHandler: e => console.error(e), - onlineHandler: () => console.log('worker is online') + onlineHandler: () => console.info('worker is online') }) -pool.emitter.on('FullPool', () => maxReached++) +pool.emitter.on(PoolEvents.full, () => poolFull++) +pool.emitter.on(PoolEvents.busy, () => poolBusy++) -const start = Date.now() +const start = performance.now() const iterations = 1000 -for (let i = 0; i <= iterations; i++) { - pool.execute({}).then(res => { - resolved++ - if (resolved === iterations) { - console.log('Time take is ' + (Date.now() - start)) - console.log('The pool was full for ' + maxReached + ' times') - } - }) +for (let i = 1; i <= iterations; i++) { + pool + .execute({}) + .then(() => { + resolved++ + if (resolved === iterations) { + console.info('Time taken is ' + (performance.now() - start)) + console.info('The pool was full for ' + poolFull + ' times') + return console.info('The pool was busy for ' + poolBusy + ' times') + } + return null + }) + .catch(err => console.error(err)) }