X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fthread%2Fdynamic.ts;h=cd9d23253a040f44070da2fe0b0504da31aeb283;hb=refs%2Ftags%2Fv3.1.9;hp=a34f0c25f78b1da3a306c9c07edb5c5d43f0f21b;hpb=edc0cdb11d19cc5993ca98004a7dbbf49439acd8;p=poolifier.git diff --git a/src/pools/thread/dynamic.ts b/src/pools/thread/dynamic.ts index a34f0c25..cd9d2325 100644 --- a/src/pools/thread/dynamic.ts +++ b/src/pools/thread/dynamic.ts @@ -1,4 +1,5 @@ import { type PoolType, PoolTypes } from '../pool' +import { checkDynamicPoolSize } from '../utils' import { FixedThreadPool, type ThreadPoolOptions } from './fixed' /** @@ -26,12 +27,15 @@ export class DynamicThreadPool< */ public constructor ( min: number, - protected readonly max: number, + max: number, filePath: string, opts: ThreadPoolOptions = {} ) { - super(min, filePath, opts) - this.checkDynamicPoolSize(this.numberOfWorkers, this.max) + super(min, filePath, opts, max) + checkDynamicPoolSize( + this.minimumNumberOfWorkers, + this.maximumNumberOfWorkers as number + ) } /** @inheritDoc */