build(deps-dev): apply updates
[poolifier.git] / examples / fixedExample.js
index 2c36a7038695e4e4a8a10dae15bc0f748a4b3849..3f103ca5523f85441fc864172f24f7f142cca477 100644 (file)
@@ -1,11 +1,13 @@
-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
@@ -13,7 +15,8 @@ for (let i = 1; i <= iterations; i++) {
     .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
     })