X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fthread%2Fdynamic.ts;h=119e556dd2ccb454fec3ed9c89c20df5d76199c2;hb=34d8846f1e7e54273f3944f687336c5624a18f39;hp=1d3f3f5d3c64d0d94a367c17f92a6df1d2b4d75f;hpb=2431bdb4c2dc637169bf623a40fc6562f685e56e;p=poolifier.git diff --git a/src/pools/thread/dynamic.ts b/src/pools/thread/dynamic.ts index 1d3f3f5d..119e556d 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' /** @@ -31,7 +32,7 @@ export class DynamicThreadPool< opts: ThreadPoolOptions = {} ) { super(min, filePath, opts) - this.checkDynamicPoolSize(this.numberOfWorkers, this.max) + checkDynamicPoolSize(this.numberOfWorkers, this.max) } /** @inheritDoc */ @@ -39,11 +40,6 @@ export class DynamicThreadPool< return PoolTypes.dynamic } - /** @inheritDoc */ - protected get maxSize (): number { - return this.max - } - /** @inheritDoc */ protected get busy (): boolean { return this.full && this.internalBusy()