X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fcluster%2Ffixed.ts;h=a0c6b16f6ed7b5a16e38c30c75c62302cd54b9c7;hb=f8350486e75b15ed17249cda3d0a55ee807a6a9f;hp=e29c8c0faa1720af8c5c43bab67b5bc031a90251;hpb=c4855468bc26a7ee37d2c8ef34bb1ac864448e77;p=poolifier.git diff --git a/src/pools/cluster/fixed.ts b/src/pools/cluster/fixed.ts index e29c8c0f..a0c6b16f 100644 --- a/src/pools/cluster/fixed.ts +++ b/src/pools/cluster/fixed.ts @@ -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 { * 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 */ @@ -66,7 +65,7 @@ export class FixedClusterPool< } /** @inheritDoc */ - public destroyWorker (worker: Worker): void { + protected destroyWorker (worker: Worker): void { this.sendToWorker(worker, { kill: 1 }) worker.kill() } @@ -77,7 +76,7 @@ export class FixedClusterPool< } /** @inheritDoc */ - public registerWorkerMessageListener( + protected registerWorkerMessageListener( worker: Worker, listener: (message: MessageValue) => void ): void { @@ -97,16 +96,26 @@ export class FixedClusterPool< /** @inheritDoc */ public get type (): PoolType { - return PoolType.FIXED + return PoolTypes.fixed } /** @inheritDoc */ - public get full (): boolean { - return this.workerNodes.length === this.numberOfWorkers + protected get minSize (): number { + return this.numberOfWorkers } /** @inheritDoc */ - public get busy (): boolean { + protected get maxSize (): number { + return this.numberOfWorkers + } + + /** @inheritDoc */ + protected get full (): boolean { + return this.workerNodes.length >= this.numberOfWorkers + } + + /** @inheritDoc */ + protected get busy (): boolean { return this.internalBusy() } }