8057d6f343caddda5091954cd1ed80e96f2e4b79
6 } from
'node:worker_threads'
8 import type { MessageValue
} from
'../utility-types.js'
9 import { AbstractWorker
} from
'./abstract-worker.js'
10 import type { TaskFunction
, TaskFunctions
} from
'./task-functions.js'
11 import type { WorkerOptions
} from
'./worker-options.js'
14 * A thread worker used by a poolifier `ThreadPool`.
16 * When this worker is inactive for more than the given `maxInactiveTime`,
17 * it will send a termination request to its main thread.
19 * If you use a `DynamicThreadPool` the extra workers that were created will be terminated,
20 * but the minimum number of workers will be guaranteed.
21 * @typeParam Data - Type of data this worker receives from pool's execution. This can only be structured-cloneable data.
22 * @typeParam Response - Type of response the worker sends back to the main thread. This can only be structured-cloneable data.
23 * @author [Alessandro Pio Ardizio](https://github.com/pioardi)
26 export class ThreadWorker
<
29 > extends AbstractWorker
<MessagePort
, Data
, Response
> {
31 * Message port used to communicate with the main worker.
33 private port
?: MessagePort
36 * Constructs a new poolifier thread worker.
37 * @param taskFunctions - Task function(s) processed by the worker when the pool's `execution` function is invoked.
38 * @param opts - Options for the worker.
41 taskFunctions
: TaskFunction
<Data
, Response
> | TaskFunctions
<Data
, Response
>,
42 opts
: WorkerOptions
= {}
44 super(isMainThread
, parentPort
, taskFunctions
, opts
)
48 protected handleReadyMessage (message
: MessageValue
<Data
>): void {
50 message
.workerId
=== this.id
&&
51 message
.ready
=== false &&
55 this.port
= message
.port
56 this.port
.on('message', this.messageListener
.bind(this))
57 this.sendToMainWorker({
59 taskFunctionsProperties
: this.listTaskFunctionsProperties(),
62 this.sendToMainWorker({
64 taskFunctionsProperties
: this.listTaskFunctionsProperties(),
71 protected handleKillMessage (message
: MessageValue
<Data
>): void {
72 super.handleKillMessage(message
)
78 protected get
id (): number {
83 protected readonly sendToMainWorker
= (
84 message
: MessageValue
<Response
>
86 this.port
?.postMessage({
89 } satisfies MessageValue
<Response
>)
95 protected handleError (error
: Error | string): string {
96 return error
as string