Package lock to 2.0.0 and removing other full keywords
authoraardizio <alessandroardizio94@gmail.com>
Mon, 1 Mar 2021 10:03:14 +0000 (11:03 +0100)
committeraardizio <alessandroardizio94@gmail.com>
Mon, 1 Mar 2021 10:03:14 +0000 (11:03 +0100)
README.md
examples/dynamicExample.js
package-lock.json

index ec12e3975869149d39d17c8a885d194f3f2c3e79..1ddad503512fa3c8f3e2107006c9ca16cf165128 100644 (file)
--- a/README.md
+++ b/README.md
@@ -127,7 +127,7 @@ const pool = new DynamicThreadPool(10, 100,
   './yourWorker.js',
   { errorHandler: (e) => console.error(e), onlineHandler: () => console.log('worker is online') })
 
-pool.emitter.on('busy', () => console.log('Pool is full'))
+pool.emitter.on('busy', () => console.log('Pool is busy'))
 
 // the execute method signature is the same for both implementations,
 // so you can easy switch from one to another
index 66909d382d0b4ffc27fb83fb3e84317eb0f68f3c..95b4f49a5db650ee91642e0119f6e4b3c4359e3f 100644 (file)
@@ -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
     })
index f7c0088589f5d483bd3cf1442a09b7863e5b4133..5c5b7481c3d51e5e19b5dbc634339c0103a080c6 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "poolifier",
-  "version": "2.0.0-beta.7",
+  "version": "2.0.0",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {