X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fpool.ts;h=4a0ab725adbaaa5cb08a5740ba195663b554270f;hb=e4f20deb9ad8a6e0113306f0ec19ba6d4676d24a;hp=78d298f90f20381d3cb2157d276e32ced109f4a2;hpb=2431bdb4c2dc637169bf623a40fc6562f685e56e;p=poolifier.git diff --git a/src/pools/pool.ts b/src/pools/pool.ts index 78d298f9..4a0ab725 100644 --- a/src/pools/pool.ts +++ b/src/pools/pool.ts @@ -66,11 +66,11 @@ export interface PoolInfo { readonly maxSize: number /** Pool utilization ratio. */ readonly utilization?: number - /** Pool total worker nodes */ + /** Pool total worker nodes. */ readonly workerNodes: number - /** Pool idle worker nodes */ + /** Pool idle worker nodes. */ readonly idleWorkerNodes: number - /** Pool busy worker nodes */ + /** Pool busy worker nodes. */ readonly busyWorkerNodes: number readonly executedTasks: number readonly executingTasks: number @@ -183,7 +183,7 @@ export interface IPool< * Events that can currently be listened to: * * - `'full'`: Emitted when the pool is dynamic and the number of workers created has reached the maximum size expected. - * - `'ready'`: Emitted when the number of workers created in the pool has reached the maximum size expected and are ready. + * - `'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. * - `'error'`: Emitted when an uncaught error occurs. * - `'taskError'`: Emitted when an error occurs while executing a task.