Merge branch 'master' of github.com:poolifier/poolifier
[poolifier.git] / src / pools / cluster / fixed.ts
index faa68fc74ce96ece284bb953f53db02c47c154e9..a0c6b16f6ed7b5a16e38c30c75c62302cd54b9c7 100644 (file)
@@ -2,8 +2,7 @@ import type { ClusterSettings, Worker } from 'node:cluster'
 import cluster from 'node:cluster'
 import type { MessageValue } from '../../utility-types'
 import { AbstractPool } from '../abstract-pool'
-import type { PoolOptions } from '../pool'
-import { PoolType } from '../pool'
+import { type PoolOptions, type PoolType, PoolTypes } from '../pool'
 
 /**
  * Options for a poolifier cluster pool.
@@ -32,7 +31,7 @@ export interface ClusterPoolOptions extends PoolOptions<Worker> {
  * This pool selects the workers in a round robin fashion.
  *
  * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
- * @typeParam Response - Type of response of execution. This can only be serializable data.
+ * @typeParam Response - Type of execution response. This can only be serializable data.
  * @author [Christopher Quadflieg](https://github.com/Shinigami92)
  * @since 2.0.0
  */
@@ -97,12 +96,22 @@ export class FixedClusterPool<
 
   /** @inheritDoc */
   public get type (): PoolType {
-    return PoolType.FIXED
+    return PoolTypes.fixed
+  }
+
+  /** @inheritDoc */
+  protected get minSize (): number {
+    return this.numberOfWorkers
+  }
+
+  /** @inheritDoc */
+  protected get maxSize (): number {
+    return this.numberOfWorkers
   }
 
   /** @inheritDoc */
   protected get full (): boolean {
-    return this.workerNodes.length === this.numberOfWorkers
+    return this.workerNodes.length >= this.numberOfWorkers
   }
 
   /** @inheritDoc */