X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FdynamicExample.js;h=ed1bddebe0e17914992b26d982e477bf95e8e7bc;hb=9cd39dd47830f0923cd3ebf53b709bf7fb07e788;hp=22b4f19c4b7394c92b1b91b7d8ffad432e810e4c;hpb=60fbd6d6188b0902d157fd0cde04d6af3a391e32;p=poolifier.git diff --git a/examples/dynamicExample.js b/examples/dynamicExample.js index 22b4f19c..ed1bddeb 100644 --- a/examples/dynamicExample.js +++ b/examples/dynamicExample.js @@ -5,16 +5,20 @@ 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('busy', () => maxReached++) 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 take is ' + (Date.now() - start)) + return console.log('The pool was busy for ' + maxReached + ' times') + } + return null + }) + .catch(err => console.error(err)) }