X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=1ddad503512fa3c8f3e2107006c9ca16cf165128;hb=a72f2599850d4587fa5088721897fe256e1c2de1;hp=ec12e3975869149d39d17c8a885d194f3f2c3e79;hpb=330c983e06cc9711c66fcd0f1bb419e80453c77f;p=poolifier.git diff --git a/README.md b/README.md index ec12e397..1ddad503 100644 --- 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