X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fpools%2Fthread%2Fdynamic.ts;h=932a0cd5ab40dcd454f90eaf8977f30b9194c2a0;hb=91bfd799ee1722e0181fe158697523b575f28de3;hp=b4fd46c1c401d5bde0fd990fe35a05e1e4129bb4;hpb=ff5e76e152be8540cba8118bb4e2b9da314dfff5;p=poolifier.git diff --git a/src/pools/thread/dynamic.ts b/src/pools/thread/dynamic.ts index b4fd46c1..932a0cd5 100644 --- a/src/pools/thread/dynamic.ts +++ b/src/pools/thread/dynamic.ts @@ -1,4 +1,5 @@ import type { PoolOptions } from '../abstract-pool' +import { PoolType } from '../pool-internal' import type { ThreadWorkerWithMessageChannel } from './fixed' import { FixedThreadPool } from './fixed' @@ -8,9 +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 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. - * + * @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. * @author [Alessandro Pio Ardizio](https://github.com/pioardi) * @since 0.0.1 */ @@ -36,7 +36,12 @@ export class DynamicThreadPool< } /** @inheritdoc */ - public get dynamic (): boolean { - return true + public get type (): PoolType { + return PoolType.DYNAMIC + } + + /** @inheritdoc */ + public get busy (): boolean { + return this.workers.length === this.max } }