X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fpools%2Fcluster%2Fdynamic.ts;h=08ebc75c76a66ba5ca311c2e269988d741ad5aff;hb=5b5321fd0b3ef10dd12b9aa21bf3ca9fa3970e76;hp=9f2f0dd95130a37d4bf010b071dbcc30271ab9ac;hpb=c426b04af6b85ef3ec6859929eb906bcea4fcaf7;p=poolifier.git diff --git a/src/pools/cluster/dynamic.ts b/src/pools/cluster/dynamic.ts index 9f2f0dd9..08ebc75c 100644 --- a/src/pools/cluster/dynamic.ts +++ b/src/pools/cluster/dynamic.ts @@ -1,7 +1,6 @@ -import { type Worker } from 'node:cluster' -import { type PoolOptions, type PoolType, PoolTypes } from '../pool' import { checkDynamicPoolSize } from '../utils' -import { FixedClusterPool } from './fixed' +import { PoolEvents, type PoolType, PoolTypes } from '../pool' +import { type ClusterPoolOptions, FixedClusterPool } from './fixed' /** * A cluster pool with a dynamic number of workers, but a guaranteed minimum number of workers. @@ -30,7 +29,7 @@ export class DynamicClusterPool< min: number, max: number, filePath: string, - opts: PoolOptions = {} + opts: ClusterPoolOptions = {} ) { super(min, filePath, opts, max) checkDynamicPoolSize( @@ -39,6 +38,18 @@ export class DynamicClusterPool< ) } + /** @inheritDoc */ + protected shallCreateDynamicWorker (): boolean { + return !this.full && this.internalBusy() + } + + /** @inheritDoc */ + protected checkAndEmitDynamicWorkerCreationEvents (): void { + if (this.full) { + this.emitter?.emit(PoolEvents.full, this.info) + } + } + /** @inheritDoc */ protected get type (): PoolType { return PoolTypes.dynamic