X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpools%2Fthread%2Ffixed.ts;h=d843144c633fd99d5becf18ad1d5918ab570eaf6;hb=2c039e4373e86714cdf27e77440b12ee8eb2e4db;hp=be1a8baab1f1ac61a9755f1aab009a063863d3fe;hpb=8881ae32256c9a9ebe6d78c95672f610a3f46719;p=poolifier.git diff --git a/src/pools/thread/fixed.ts b/src/pools/thread/fixed.ts index be1a8baa..d843144c 100644 --- a/src/pools/thread/fixed.ts +++ b/src/pools/thread/fixed.ts @@ -2,6 +2,7 @@ import { MessageChannel, SHARE_ENV, Worker, + type WorkerOptions, isMainThread } from 'node:worker_threads' import type { Draft, MessageValue } from '../../utility-types' @@ -14,6 +15,18 @@ import { WorkerTypes } from '../pool' +/** + * Options for a poolifier thread pool. + */ +export interface ThreadPoolOptions extends PoolOptions { + /** + * Worker options. + * + * @see https://nodejs.org/api/worker_threads.html#new-workerfilename-options + */ + workerOptions?: WorkerOptions +} + /** * A thread worker with message channels for communication between main thread and thread worker. */ @@ -24,8 +37,6 @@ export type ThreadWorkerWithMessageChannel = Worker & Draft * * It is possible to perform tasks in sync or asynchronous mode as you prefer. * - * This pool selects the threads in a round robin fashion. - * * @typeParam Data - Type of data sent to the worker. This can only be serializable data. * @typeParam Response - Type of execution response. This can only be serializable data. * @author [Alessandro Pio Ardizio](https://github.com/pioardi) @@ -45,7 +56,7 @@ export class FixedThreadPool< public constructor ( numberOfThreads: number, filePath: string, - opts: PoolOptions = {} + protected readonly opts: ThreadPoolOptions = {} ) { super(numberOfThreads, filePath, opts) } @@ -82,7 +93,8 @@ export class FixedThreadPool< /** @inheritDoc */ protected createWorker (): ThreadWorkerWithMessageChannel { return new Worker(this.filePath, { - env: SHARE_ENV + env: SHARE_ENV, + ...this.opts.workerOptions }) } @@ -116,11 +128,6 @@ export class FixedThreadPool< return this.numberOfWorkers } - /** @inheritDoc */ - protected get full (): boolean { - return this.workerNodes.length >= this.numberOfWorkers - } - /** @inheritDoc */ protected get busy (): boolean { return this.internalBusy()