X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fpools%2Fcluster%2Ffixed.ts;h=10ee92c57876663d07ae96ecdcde036013395126;hb=cac70359b46b8437dd8d23ef6176c6cdfd187c0c;hp=ed4f6fed2826078bfdeac466bcec7e8c4c80bef5;hpb=027063571693f211b35c8851566a063201adb9af;p=poolifier.git diff --git a/src/pools/cluster/fixed.ts b/src/pools/cluster/fixed.ts index ed4f6fed..10ee92c5 100644 --- a/src/pools/cluster/fixed.ts +++ b/src/pools/cluster/fixed.ts @@ -100,6 +100,11 @@ export class FixedClusterPool< return PoolType.FIXED } + /** @inheritDoc */ + public get size (): number { + return this.numberOfWorkers + } + /** @inheritDoc */ protected get full (): boolean { return this.workerNodes.length === this.numberOfWorkers