1 import { PoolEvents
, type PoolType
, PoolTypes
} from
'../pool.js'
2 import { checkDynamicPoolSize
} from
'../utils.js'
3 import { type ClusterPoolOptions
, FixedClusterPool
} from
'./fixed.js'
6 * A cluster pool with a dynamic number of workers, but a guaranteed minimum number of workers.
8 * This cluster pool creates new workers when the others are busy, up to the maximum number of workers.
9 * When the maximum number of workers is reached and workers are busy, an event is emitted. If you want to listen to this event, use the pool's `emitter`.
10 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
11 * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
12 * @author [Christopher Quadflieg](https://github.com/Shinigami92)
15 export class DynamicClusterPool
<
18 > extends FixedClusterPool
<Data
, Response
> {
20 * Constructs a new poolifier dynamic cluster pool.
21 * @param min - Minimum number of workers which are always active.
22 * @param max - Maximum number of workers that can be created by this pool.
23 * @param filePath - Path to an implementation of a `ClusterWorker` file, which can be relative or absolute.
24 * @param opts - Options for this dynamic cluster pool.
30 opts
: ClusterPoolOptions
= {}
32 super(min
, filePath
, opts
, max
)
34 this.minimumNumberOfWorkers
,
35 this.maximumNumberOfWorkers
40 protected shallCreateDynamicWorker (): boolean {
41 return (!this.full
&& this.internalBusy()) || this.empty
45 protected checkAndEmitDynamicWorkerCreationEvents (): void {
47 this.emitter
?.emit(PoolEvents
.full
, this.info
)
52 protected get
type (): PoolType
{
53 return PoolTypes
.dynamic
57 protected get
busy (): boolean {
58 return this.full
&& this.internalBusy()