X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FdynamicExample.js;h=79f73c11c53b0f296cd077ecca35fc53a18cab1c;hb=refs%2Ftags%2Fv2.4.2;hp=22379f204bf5a8a504920e06fea498e76f39f728;hpb=87a12b1289a70e4b26f2ea40ba3cbfc2ad4d97ea;p=poolifier.git diff --git a/examples/dynamicExample.js b/examples/dynamicExample.js index 22379f20..79f73c11 100644 --- a/examples/dynamicExample.js +++ b/examples/dynamicExample.js @@ -1,20 +1,27 @@ -const DynamicThreadPool = require('../lib/dynamic') +const { DynamicThreadPool } = 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') }) -pool.emitter.on('FullPool', () => maxReached++) +pool.emitter.on('full', () => poolFull++) +pool.emitter.on('busy', () => poolBusy++) const start = Date.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.log('Time taken is ' + (Date.now() - start)) + console.log('The pool was full for ' + poolFull + ' times') + return console.log('The pool was busy for ' + poolBusy + ' times') + } + return null + }) + .catch(err => console.error(err)) }