X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fthread%2Fdynamic.ts;h=d3764c285291407d75b1ee293ece40ebbc8c5dfd;hb=d1c03778bd26af064147055fc21d6701ffefb707;hp=b0a22346690bd36c471b6b45c844af8ffae098ea;hpb=ab3bb4a4fd6b09465fb97ec4f412e57448f94306;p=poolifier.git diff --git a/src/pools/thread/dynamic.ts b/src/pools/thread/dynamic.ts index b0a22346..d3764c28 100644 --- a/src/pools/thread/dynamic.ts +++ b/src/pools/thread/dynamic.ts @@ -1,7 +1,6 @@ -import { type Worker } from 'node:worker_threads' -import { type PoolOptions, type PoolType, PoolTypes } from '../pool' +import { PoolEvents, type PoolType, PoolTypes } from '../pool' import { checkDynamicPoolSize } from '../utils' -import { FixedThreadPool } from './fixed' +import { FixedThreadPool, type ThreadPoolOptions } from './fixed' /** * A thread pool with a dynamic number of threads, but a guaranteed minimum number of threads. @@ -30,7 +29,7 @@ export class DynamicThreadPool< min: number, max: number, filePath: string, - opts: PoolOptions = {} + opts: ThreadPoolOptions = {} ) { super(min, filePath, opts, max) checkDynamicPoolSize( @@ -39,6 +38,18 @@ export class DynamicThreadPool< ) } + /** @inheritDoc */ + protected shallCreateDynamicWorker (): boolean { + return !this.full && this.internalBusy() + } + + /** @inheritDoc */ + protected checkAndEmitDynamicWorkerCreationEvents (): void { + if (this.full) { + this.emitter?.emit(PoolEvents.full, this.info) + } + } + /** @inheritDoc */ protected get type (): PoolType { return PoolTypes.dynamic