X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fthread%2Fdynamic.ts;h=d8cc3a7427ca0f843c2c9f839747b3a663b9b95c;hb=d2097c13847f906e289a80638248343948b7f18a;hp=33e42892c424a671caf547148aa4deacaf83f5f8;hpb=9cd39dd47830f0923cd3ebf53b709bf7fb07e788;p=poolifier.git diff --git a/src/pools/thread/dynamic.ts b/src/pools/thread/dynamic.ts index 33e42892..d8cc3a74 100644 --- a/src/pools/thread/dynamic.ts +++ b/src/pools/thread/dynamic.ts @@ -28,24 +28,24 @@ export class DynamicThreadPool< */ public constructor ( min: number, - private readonly max: number, + public readonly max: number, filePath: string, opts: PoolOptions = {} ) { super(min, filePath, opts) } - /** {@inheritDoc} */ + /** @inheritDoc */ public get type (): PoolType { return PoolType.DYNAMIC } - /** {@inheritDoc} */ + /** @inheritDoc */ public get full (): boolean { return this.workers.length === this.max } - /** {@inheritDoc} */ + /** @inheritDoc */ public get busy (): boolean { return this.full && this.findFreeWorkerKey() === -1 }