X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FfixedExample.js;h=3f103ca5523f85441fc864172f24f7f142cca477;hb=70353024c44987c467dadcec306c699ce4ae1f06;hp=07a57c3ef9c5fc9ff455586498294149bf14ebdb;hpb=292ad316a2815762f2e4a822383f1aef5ae49774;p=poolifier.git diff --git a/examples/fixedExample.js b/examples/fixedExample.js index 07a57c3e..3f103ca5 100644 --- a/examples/fixedExample.js +++ b/examples/fixedExample.js @@ -1,19 +1,22 @@ -const { FixedThreadPool } = require('poolifier') +const { FixedThreadPool, PoolEvents } = require('poolifier') let resolved = 0 +let poolBusy = 0 const pool = new FixedThreadPool(15, './yourWorker.js', { errorHandler: e => console.error(e), onlineHandler: () => console.log('worker is online') }) +pool.emitter.on(PoolEvents.busy, () => poolBusy++) -const start = Date.now() +const start = performance.now() const iterations = 1000 for (let i = 1; i <= iterations; i++) { pool .execute({}) - .then(res => { + .then(() => { resolved++ if (resolved === iterations) { - return console.log('Time take is ' + (Date.now() - start)) + console.log('Time taken is ' + (performance.now() - start)) + return console.log('The pool was busy for ' + poolBusy + ' times') } return null })