b6573a974cc653656fb6a968b0437e57eeed7dd6
1 import { type MessagePort
, isMainThread
, parentPort
} from
'node:worker_threads'
2 import type { MessageValue
} from
'../utility-types'
3 import { AbstractWorker
} from
'./abstract-worker'
4 import type { WorkerOptions
} from
'./worker-options'
5 import type { TaskFunctions
, WorkerFunction
} from
'./worker-functions'
8 * A thread worker used by a poolifier `ThreadPool`.
10 * When this worker is inactive for more than the given `maxInactiveTime`,
11 * it will send a termination request to its main thread.
13 * If you use a `DynamicThreadPool` the extra workers that were created will be terminated,
14 * but the minimum number of workers will be guaranteed.
16 * @typeParam Data - Type of data this worker receives from pool's execution. This can only be structured-cloneable data.
17 * @typeParam Response - Type of response the worker sends back to the main thread. This can only be structured-cloneable data.
18 * @author [Alessandro Pio Ardizio](https://github.com/pioardi)
21 export class ThreadWorker
<
24 > extends AbstractWorker
<MessagePort
, Data
, Response
> {
26 * Constructs a new poolifier thread worker.
28 * @param taskFunctions - Task function(s) processed by the worker when the pool's `execution` function is invoked.
29 * @param opts - Options for the worker.
33 | WorkerFunction
<Data
, Response
>
34 | TaskFunctions
<Data
, Response
>,
35 opts
: WorkerOptions
= {}
38 'worker-thread-pool:poolifier',
41 parentPort
as MessagePort
,
47 protected sendToMainWorker (message
: MessageValue
<Response
>): void {
48 this.getMainWorker().postMessage(message
)