refactor: freeze empty function type
[poolifier.git] / src / worker / cluster-worker.ts
1 import type { Worker } from 'cluster'
2 import cluster from 'cluster'
3 import type { MessageValue } from '../utility-types'
4 import { EMPTY_OBJECT_LITERAL } from '../utils'
5 import { AbstractWorker } from './abstract-worker'
6 import type { WorkerOptions } from './worker-options'
7
8 /**
9 * A cluster worker used by a poolifier `ClusterPool`.
10 *
11 * When this worker is inactive for more than the given `maxInactiveTime`,
12 * it will send a termination request to its main worker.
13 *
14 * If you use a `DynamicClusterPool` the extra workers that were created will be terminated,
15 * but the minimum number of workers will be guaranteed.
16 *
17 * @typeParam Data - Type of data this worker receives from pool's execution. This can only be serializable data.
18 * @typeParam Response - Type of response the worker sends back to the main worker. This can only be serializable data.
19 * @author [Christopher Quadflieg](https://github.com/Shinigami92)
20 * @since 2.0.0
21 */
22 export class ClusterWorker<
23 Data = unknown,
24 Response = unknown
25 > extends AbstractWorker<Worker, Data, Response> {
26 /**
27 * Constructs a new poolifier cluster worker.
28 *
29 * @param fn - Function processed by the worker when the pool's `execution` function is invoked.
30 * @param opts - Options for the worker.
31 */
32 public constructor (
33 fn: (data: Data) => Response,
34 opts: WorkerOptions = EMPTY_OBJECT_LITERAL
35 ) {
36 super(
37 'worker-cluster-pool:poolifier',
38 cluster.isPrimary,
39 fn,
40 cluster.worker,
41 opts
42 )
43 }
44
45 /** {@inheritDoc} */
46 protected sendToMainWorker (message: MessageValue<Response>): void {
47 this.getMainWorker().send(message)
48 }
49
50 /** {@inheritDoc} */
51 protected handleError (e: Error | string): string {
52 return e instanceof Error ? e.message : e
53 }
54 }