X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FfixedExample.js;h=1f5ac4ea4e19f52ec474de4c12c6ed314f78704e;hb=670ede1cd02d1934860757fc7ea28ed0e963f6cc;hp=2346f7b4f0b68b207ced0df9ffd86f125e36a1e5;hpb=6961ca9a305bb2049105e6710a53a4f5f7970cb6;p=poolifier.git diff --git a/examples/fixedExample.js b/examples/fixedExample.js index 2346f7b4..1f5ac4ea 100644 --- a/examples/fixedExample.js +++ b/examples/fixedExample.js @@ -1,3 +1,4 @@ +'use strict' const { FixedThreadPool, PoolEvents, @@ -8,7 +9,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 @@ -16,11 +19,12 @@ const start = performance.now() const iterations = 1000 for (let i = 1; i <= iterations; i++) { pool - .execute({}) + .execute() .then(() => { 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