X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FfixedExample.js;h=884ab59e33ea44a81241b89983f34f9135d623f7;hb=2e2ef9c39a37f5d32bfaf75b7cfe886aac69d8cb;hp=2346f7b4f0b68b207ced0df9ffd86f125e36a1e5;hpb=f65efa796405c785a1ab5e646e30fc27418a6151;p=poolifier.git diff --git a/examples/fixedExample.js b/examples/fixedExample.js index 2346f7b4..884ab59e 100644 --- a/examples/fixedExample.js +++ b/examples/fixedExample.js @@ -8,7 +8,9 @@ const pool = new FixedThreadPool(availableParallelism(), './yourWorker.js', { errorHandler: e => console.error(e), onlineHandler: () => console.info('worker is online') }) +let poolReady = 0 let poolBusy = 0 +pool.emitter.on(PoolEvents.ready, () => poolReady++) pool.emitter.on(PoolEvents.busy, () => poolBusy++) let resolved = 0 @@ -21,6 +23,7 @@ for (let i = 1; i <= iterations; i++) { resolved++ if (resolved === iterations) { console.info('Time taken is ' + (performance.now() - start)) + console.info('The pool was ready for ' + poolReady + ' times') return console.info('The pool was busy for ' + poolBusy + ' times') } return null