Bump mocha from 8.3.0 to 8.3.1 (#254)
[poolifier.git] / examples / dynamicExample.js
index 4003c53462878652804fb8a051feeb792553c051..95b4f49a5db650ee91642e0119f6e4b3c4359e3f 100644 (file)
@@ -5,7 +5,7 @@ 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
@@ -16,7 +16,7 @@ for (let i = 0; i <= iterations; i++) {
       resolved++
       if (resolved === iterations) {
         console.log('Time take is ' + (Date.now() - start))
-        return console.log('The pool was full for ' + maxReached + ' times')
+        return console.log('The pool was busy for ' + maxReached + ' times')
       }
       return null
     })