6 } from
'node:worker_threads'
7 import type { MessageValue
} from
'../utility-types'
8 import { AbstractWorker
} from
'./abstract-worker'
9 import type { WorkerOptions
} from
'./worker-options'
10 import type { TaskFunction
, TaskFunctions
} from
'./task-functions'
13 * A thread worker used by a poolifier `ThreadPool`.
15 * When this worker is inactive for more than the given `maxInactiveTime`,
16 * it will send a termination request to its main thread.
18 * If you use a `DynamicThreadPool` the extra workers that were created will be terminated,
19 * 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
35 * 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
= {}
45 'poolifier:thread-worker',
47 parentPort
as MessagePort
,
54 protected handleReadyMessage (message
: MessageValue
<Data
>): void {
56 message
.workerId
=== this.id
&&
57 message
.ready
=== false &&
61 this.port
= message
.port
62 this.port
.on('message', this.messageListener
.bind(this))
63 this.sendToMainWorker({
65 taskFunctionNames
: this.listTaskFunctionNames()
68 this.sendToMainWorker({
70 taskFunctionNames
: this.listTaskFunctionNames()
77 protected handleKillMessage (message
: MessageValue
<Data
>): void {
78 super.handleKillMessage(message
)
84 protected get
id (): number {
89 protected sendToMainWorker (message
: MessageValue
<Response
>): void {
90 this.port
.postMessage({ ...message
, workerId
: this.id
})
97 protected handleError (error
: Error | string): string {
98 return error
as string