refactor: imports cleanup
[poolifier.git] / src / worker / thread-worker.ts
CommitLineData
059438ff 1import { type MessagePort, isMainThread, parentPort } from 'node:worker_threads'
a86b6df1
JB
2import type {
3 MessageValue,
4 TaskFunctions,
5 WorkerFunction
6} from '../utility-types'
c97c7edb 7import { AbstractWorker } from './abstract-worker'
325f50bc 8import type { WorkerOptions } from './worker-options'
a32e02ba 9
a32e02ba 10/**
729c563d 11 * A thread worker used by a poolifier `ThreadPool`.
4ade5f1f 12 *
729c563d
S
13 * When this worker is inactive for more than the given `maxInactiveTime`,
14 * it will send a termination request to its main thread.
15 *
16 * If you use a `DynamicThreadPool` the extra workers that were created will be terminated,
17 * but the minimum number of workers will be guaranteed.
18 *
38e795c1
JB
19 * @typeParam Data - Type of data this worker receives from pool's execution. This can only be serializable data.
20 * @typeParam Response - Type of response the worker sends back to the main thread. This can only be serializable data.
4ade5f1f 21 * @author [Alessandro Pio Ardizio](https://github.com/pioardi)
a32e02ba 22 * @since 0.0.1
23 */
d3c8a1a8 24export class ThreadWorker<
deb85c12
JB
25 Data = unknown,
26 Response = unknown
d3c8a1a8 27> extends AbstractWorker<MessagePort, Data, Response> {
729c563d
S
28 /**
29 * Constructs a new poolifier thread worker.
30 *
82888165 31 * @param taskFunctions - Task function(s) processed by the worker when the pool's `execution` function is invoked.
38e795c1 32 * @param opts - Options for the worker.
729c563d 33 */
d4aeae5a 34 public constructor (
82888165
JB
35 taskFunctions:
36 | WorkerFunction<Data, Response>
37 | TaskFunctions<Data, Response>,
d4aeae5a
JB
38 opts: WorkerOptions = {}
39 ) {
82888165
JB
40 super(
41 'worker-thread-pool:poolifier',
42 isMainThread,
43 taskFunctions,
44 parentPort,
45 opts
46 )
106744f7 47 }
7784f548 48
afc003b2 49 /** @inheritDoc */
c97c7edb
S
50 protected sendToMainWorker (message: MessageValue<Response>): void {
51 this.getMainWorker().postMessage(message)
7784f548 52 }
a32e02ba 53}