build(deps-dev): apply updates
[poolifier.git] / src / pools / thread / fixed.ts
index 570c9c8b7f3ed718aaf2309b41e8b8486477d423..41fcee2b60c2c5a36b5f24bc35d1cdce4a03c326 100644 (file)
@@ -96,6 +96,11 @@ export class FixedThreadPool<
     return PoolType.FIXED
   }
 
+  /** @inheritDoc */
+  public get size (): number {
+    return this.numberOfWorkers
+  }
+
   /** @inheritDoc */
   protected get full (): boolean {
     return this.workerNodes.length === this.numberOfWorkers