X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fthread%2Fdynamic.ts;h=33e42892c424a671caf547148aa4deacaf83f5f8;hb=b2b1d84ebeb8299fda9b6090c9951e953749bbe0;hp=16aeb4397795287d46e85a1278bf1f7357ee1ecb;hpb=7c0ba92006a5c188738ffc5ff642c51f172df3d6;p=poolifier.git diff --git a/src/pools/thread/dynamic.ts b/src/pools/thread/dynamic.ts index 16aeb439..33e42892 100644 --- a/src/pools/thread/dynamic.ts +++ b/src/pools/thread/dynamic.ts @@ -1,4 +1,4 @@ -import type { PoolOptions } from '../abstract-pool' +import type { PoolOptions } from '../pool' import { PoolType } from '../pool-internal' import type { ThreadWorkerWithMessageChannel } from './fixed' import { FixedThreadPool } from './fixed' @@ -7,11 +7,10 @@ import { FixedThreadPool } from './fixed' * A thread pool with a dynamic number of threads, but a guaranteed minimum number of threads. * * This thread pool creates new threads when the others are busy, up to the maximum number of threads. - * When the maximum number of threads is reached, an event is emitted. If you want to listen to this event, use the pool's `emitter`. - * - * @template Data Type of data sent to the worker. This can only be serializable data. - * @template Response Type of response of execution. This can only be serializable data. + * When the maximum number of threads is reached and workers are busy, an event is emitted. If you want to listen to this event, use the pool's `emitter`. * + * @typeParam Data - Type of data sent to the worker. This can only be serializable data. + * @typeParam Response - Type of response of execution. This can only be serializable data. * @author [Alessandro Pio Ardizio](https://github.com/pioardi) * @since 0.0.1 */ @@ -22,27 +21,32 @@ export class DynamicThreadPool< /** * Constructs a new poolifier dynamic thread pool. * - * @param min Minimum number of threads which are always active. - * @param max Maximum number of threads that can be created by this pool. - * @param filePath Path to an implementation of a `ThreadWorker` file, which can be relative or absolute. - * @param opts Options for this dynamic thread pool. Default: `{}` + * @param min - Minimum number of threads which are always active. + * @param max - Maximum number of threads that can be created by this pool. + * @param filePath - Path to an implementation of a `ThreadWorker` file, which can be relative or absolute. + * @param opts - Options for this dynamic thread pool. */ public constructor ( min: number, - public readonly max: number, + private readonly max: number, filePath: string, opts: PoolOptions = {} ) { super(min, filePath, opts) } - /** @inheritdoc */ + /** {@inheritDoc} */ public get type (): PoolType { return PoolType.DYNAMIC } - /** @inheritdoc */ - public get busy (): boolean { + /** {@inheritDoc} */ + public get full (): boolean { return this.workers.length === this.max } + + /** {@inheritDoc} */ + public get busy (): boolean { + return this.full && this.findFreeWorkerKey() === -1 + } }