X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fthread%2Fdynamic.ts;h=a6cc209a8bbd7c2b88732f986ccc066484f7b63d;hb=d25a8ffcc8447163ac52832bd9a4f8819983f819;hp=361c615c78a8724421748036900021d550c9535e;hpb=35cf1c03f8379b58e410cad57189912379ee7b36;p=poolifier.git diff --git a/src/pools/thread/dynamic.ts b/src/pools/thread/dynamic.ts index 361c615c..a6cc209a 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' @@ -9,8 +9,8 @@ import { FixedThreadPool } from './fixed' * 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 DataType of data sent to the worker. This can only be serializable data. - * @template ResponseType of response of execution. This can only be serializable data. + * @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. * @author [Alessandro Pio Ardizio](https://github.com/pioardi) * @since 0.0.1 */ @@ -24,23 +24,23 @@ export class DynamicThreadPool< * @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. + * @param opts Options for this dynamic thread pool. */ public constructor ( min: number, - public readonly max: number, + protected readonly max: number, filePath: string, opts: PoolOptions = {} ) { super(min, filePath, opts) } - /** @inheritdoc */ + /** @inheritDoc */ public get type (): PoolType { return PoolType.DYNAMIC } - /** @inheritdoc */ + /** @inheritDoc */ public get busy (): boolean { return this.workers.length === this.max }