X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fthread%2Fdynamic.ts;h=929287c87508de7434fb72b3208e1deaba5ff846;hb=fa6f12966fa14931864dcd13596e080d689464b3;hp=932a0cd5ab40dcd454f90eaf8977f30b9194c2a0;hpb=91bfd799ee1722e0181fe158697523b575f28de3;p=poolifier.git diff --git a/src/pools/thread/dynamic.ts b/src/pools/thread/dynamic.ts index 932a0cd5..929287c8 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' @@ -24,7 +24,7 @@ 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. Default: `{}` + * @param [opts={}] Options for this dynamic thread pool. */ public constructor ( min: number, @@ -35,12 +35,12 @@ export class DynamicThreadPool< 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 }