X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fpool.ts;h=7a10373393786ac56c0e7f9a98b69f81639cbbe1;hb=08aaa20f1cc87dd022265b9bcb4439ddc58cbb3f;hp=4463560c2754e82fd8b14564bd7c18a3268dc671;hpb=68cbdc846878bc058323b757a68b4c83eedc6388;p=poolifier.git diff --git a/src/pools/pool.ts b/src/pools/pool.ts index 4463560c..7a103733 100644 --- a/src/pools/pool.ts +++ b/src/pools/pool.ts @@ -208,7 +208,7 @@ export interface IPool< * Events that can currently be listened to: * * - `'ready'`: Emitted when the number of workers created in the pool has reached the minimum size expected and are ready. - * - `'busy'`: Emitted when the number of workers created in the pool has reached the maximum size expected and are executing at least one task. + * - `'busy'`: Emitted when the number of workers created in the pool has reached the maximum size expected and are executing concurrently their tasks quota. * - `'full'`: Emitted when the pool is dynamic and the number of workers created has reached the maximum size expected. * - `'destroy'`: Emitted when the pool is destroyed. * - `'error'`: Emitted when an uncaught error occurs.