Try to fix release publishing on registry
[poolifier.git] / examples / dynamicExample.js
index 22b4f19c4b7394c92b1b91b7d8ffad432e810e4c..94c665a6ae88ee55e15575ff72fbcfd176751842 100644 (file)
@@ -5,16 +5,20 @@ const pool = new DynamicThreadPool(10, 20, './yourWorker.js', {
   errorHandler: e => console.error(e),
   onlineHandler: () => console.log('worker is online')
 })
-pool.emitter.on('FullPool', () => maxReached++)
+pool.emitter.on('busy', () => maxReached++)
 
 const start = Date.now()
 const iterations = 1000
-for (let i = 0; i <= iterations; i++) {
-  pool.execute({}).then(res => {
-    resolved++
-    if (resolved === iterations) {
-      console.log('Time take is ' + (Date.now() - start))
-      console.log('The pool was full for ' + maxReached + ' times')
-    }
-  })
+for (let i = 1; i <= iterations; i++) {
+  pool
+    .execute({})
+    .then(res => {
+      resolved++
+      if (resolved === iterations) {
+        console.log('Time take is ' + (Date.now() - start))
+        return console.log('The pool was busy for ' + maxReached + ' times')
+      }
+      return null
+    })
+    .catch(err => console.error(err))
 }