docs: enhance documentation
[poolifier.git] / src / pools / cluster / dynamic.ts
index 92f0068e0bad123633b62798f97435a87a0f010b..78c63aca64d8da1e879c723bd0fd064f46de83ee 100644 (file)
@@ -40,12 +40,12 @@ export class DynamicClusterPool<
   }
 
   /** @inheritDoc */
-  public get full (): boolean {
+  protected get full (): boolean {
     return this.workerNodes.length === this.max
   }
 
   /** @inheritDoc */
-  public get busy (): boolean {
+  protected get busy (): boolean {
     return this.full && this.internalBusy()
   }
 }