X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fthread%2Fdynamic.ts;h=7bf477dd837c0ce3e30cb65ad308c32ca0774f48;hb=aec509b85e7d73e9883c8885e27fc4e34fdaef1e;hp=e1565d00b7949b2af74cc97f44f2bdc30185e61c;hpb=f06e48d8e14dcfe3277bd16b1bd2463136af13e6;p=poolifier.git diff --git a/src/pools/thread/dynamic.ts b/src/pools/thread/dynamic.ts index e1565d00..7bf477dd 100644 --- a/src/pools/thread/dynamic.ts +++ b/src/pools/thread/dynamic.ts @@ -1,5 +1,5 @@ import type { PoolOptions } from '../pool' -import { PoolType } from '../pool-internal' +import { PoolType } from '../pool' import type { ThreadWorkerWithMessageChannel } from './fixed' import { FixedThreadPool } from './fixed' @@ -41,12 +41,12 @@ export class DynamicThreadPool< } /** @inheritDoc */ - public get full (): boolean { + protected get full (): boolean { return this.workerNodes.length === this.max } /** @inheritDoc */ - public get busy (): boolean { - return this.full && this.findFreeWorkerNodeKey() === -1 + protected get busy (): boolean { + return this.full && this.internalBusy() } }