chore: v2.4.7
[poolifier.git] / src / pools / cluster / dynamic.ts
index 89180f1f161d9351190189ff06cd7e76a40f30d5..78c63aca64d8da1e879c723bd0fd064f46de83ee 100644 (file)
@@ -1,4 +1,4 @@
-import { PoolType } from '../pool-internal'
+import { PoolType } from '../pool'
 import type { ClusterPoolOptions } from './fixed'
 import { FixedClusterPool } from './fixed'
 
@@ -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()
   }
 }