feat: add pool and worker readyness tracking infrastructure
[poolifier.git] / examples / fixedExample.js
index 2346f7b4f0b68b207ced0df9ffd86f125e36a1e5..884ab59e33ea44a81241b89983f34f9135d623f7 100644 (file)
@@ -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