refactor: abstract out measurement statistics
[poolifier.git] / src / pools / cluster / fixed.ts
index 10ee92c57876663d07ae96ecdcde036013395126..592b3fe7d4234fe3df267074963b10301ee23707 100644 (file)
@@ -1,9 +1,13 @@
-import type { ClusterSettings, Worker } from 'node:cluster'
-import cluster from 'node:cluster'
+import cluster, { type ClusterSettings, type Worker } 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,
+  type WorkerType,
+  WorkerTypes
+} from '../pool'
 
 /**
  * Options for a poolifier cluster pool.
@@ -14,8 +18,7 @@ export interface ClusterPoolOptions extends PoolOptions<Worker> {
    *
    * @see https://nodejs.org/api/cluster.html#cluster_cluster_fork_env
    */
-  // eslint-disable-next-line @typescript-eslint/no-explicit-any
-  env?: any
+  env?: Record<string, unknown>
   /**
    * Cluster settings.
    *
@@ -50,7 +53,7 @@ export class FixedClusterPool<
   public constructor (
     numberOfWorkers: number,
     filePath: string,
-    public readonly opts: ClusterPoolOptions = {}
+    protected readonly opts: ClusterPoolOptions = {}
   ) {
     super(numberOfWorkers, filePath, opts)
   }
@@ -96,18 +99,23 @@ export class FixedClusterPool<
   }
 
   /** @inheritDoc */
-  public get type (): PoolType {
-    return PoolType.FIXED
+  protected get type (): PoolType {
+    return PoolTypes.fixed
   }
 
   /** @inheritDoc */
-  public get size (): number {
+  protected get worker (): WorkerType {
+    return WorkerTypes.cluster
+  }
+
+  /** @inheritDoc */
+  protected get minSize (): number {
     return this.numberOfWorkers
   }
 
   /** @inheritDoc */
-  protected get full (): boolean {
-    return this.workerNodes.length === this.numberOfWorkers
+  protected get maxSize (): number {
+    return this.numberOfWorkers
   }
 
   /** @inheritDoc */