X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2FdynamicExample.js;h=f36138ac8085df0c07712f28150616dd7095a6f2;hb=c4216735df38e44ec4f7aee04e18955adb919c3f;hp=bb457af892ff2ff913ecd6317290e016f3ccd63d;hpb=31a7d5bea6971eff8079efd2a164a66086f6d4b3;p=poolifier.git diff --git a/examples/dynamicExample.js b/examples/dynamicExample.js index bb457af8..f36138ac 100644 --- a/examples/dynamicExample.js +++ b/examples/dynamicExample.js @@ -14,8 +14,10 @@ const pool = new DynamicThreadPool( } ) let poolFull = 0 +let poolReady = 0 let poolBusy = 0 pool.emitter.on(PoolEvents.full, () => poolFull++) +pool.emitter.on(PoolEvents.ready, () => poolReady++) pool.emitter.on(PoolEvents.busy, () => poolBusy++) let resolved = 0 @@ -29,6 +31,7 @@ for (let i = 1; i <= iterations; i++) { if (resolved === iterations) { console.info('Time taken is ' + (performance.now() - start)) console.info('The pool was full for ' + poolFull + ' times') + console.info('The pool was ready for ' + poolReady + ' times') return console.info('The pool was busy for ' + poolBusy + ' times') } return null