docs: enhance documentation
[poolifier.git] / src / pools / pool.ts
CommitLineData
fc3e6586 1import EventEmitter from 'node:events'
bdaf31cd
JB
2import type {
3 ErrorHandler,
4 ExitHandler,
50e66724 5 IWorker,
bdaf31cd 6 MessageHandler,
c4855468
JB
7 OnlineHandler,
8 WorkerNode
f06e48d8 9} from './worker'
da309861
JB
10import type {
11 WorkerChoiceStrategy,
12 WorkerChoiceStrategyOptions
13} from './selection-strategies/selection-strategies-types'
bdaf31cd 14
c4855468
JB
15/**
16 * Pool types.
17 *
18 * @enum
19 */
20export enum PoolType {
21 /**
22 * Fixed pool type.
23 */
24 FIXED = 'fixed',
25 /**
26 * Dynamic pool type.
27 */
28 DYNAMIC = 'dynamic'
29}
30
b4904890
JB
31/**
32 * Pool events emitter.
33 */
34export class PoolEmitter extends EventEmitter {}
35
aee46736
JB
36/**
37 * Enumeration of pool events.
38 */
39export const PoolEvents = Object.freeze({
40 full: 'full',
41 busy: 'busy'
42} as const)
43
44/**
45 * Pool event.
46 */
47export type PoolEvent = keyof typeof PoolEvents
48
7171d33f
JB
49/**
50 * Worker tasks queue options.
51 */
52export interface TasksQueueOptions {
53 /**
54 * Maximum number of tasks that can be executed concurrently on a worker.
55 *
56 * @defaultValue 1
57 */
58 concurrency?: number
59}
60
bdaf31cd
JB
61/**
62 * Options for a poolifier pool.
c319c66b
JB
63 *
64 * @typeParam Worker - The worker type.
bdaf31cd 65 */
50e66724 66export interface PoolOptions<Worker extends IWorker> {
bdaf31cd
JB
67 /**
68 * A function that will listen for message event on each worker.
69 */
70 messageHandler?: MessageHandler<Worker>
71 /**
72 * A function that will listen for error event on each worker.
73 */
74 errorHandler?: ErrorHandler<Worker>
75 /**
76 * A function that will listen for online event on each worker.
77 */
78 onlineHandler?: OnlineHandler<Worker>
79 /**
80 * A function that will listen for exit event on each worker.
81 */
82 exitHandler?: ExitHandler<Worker>
83 /**
46e857ca 84 * The worker choice strategy to use in this pool.
bdaf31cd
JB
85 */
86 workerChoiceStrategy?: WorkerChoiceStrategy
da309861
JB
87 /**
88 * The worker choice strategy options.
89 */
90 workerChoiceStrategyOptions?: WorkerChoiceStrategyOptions
bdaf31cd
JB
91 /**
92 * Pool events emission.
93 *
38e795c1 94 * @defaultValue true
bdaf31cd
JB
95 */
96 enableEvents?: boolean
ff733df7
JB
97 /**
98 * Pool worker tasks queue.
99 *
100 * @experimental
101 * @defaultValue false
102 */
103 enableTasksQueue?: boolean
7171d33f
JB
104 /**
105 * Pool worker tasks queue options.
106 *
107 * @experimental
7171d33f
JB
108 */
109 tasksQueueOptions?: TasksQueueOptions
bdaf31cd 110}
a35560ba 111
729c563d
S
112/**
113 * Contract definition for a poolifier pool.
114 *
c4855468 115 * @typeParam Worker - Type of worker which manages this pool.
38e795c1
JB
116 * @typeParam Data - Type of data sent to the worker. This can only be serializable data.
117 * @typeParam Response - Type of response of execution. This can only be serializable data.
729c563d 118 */
c4855468
JB
119export interface IPool<
120 Worker extends IWorker,
121 Data = unknown,
122 Response = unknown
123> {
124 /**
125 * Pool type.
126 *
127 * If it is `'dynamic'`, it provides the `max` property.
128 */
129 readonly type: PoolType
130 /**
131 * Pool worker nodes.
132 */
133 readonly workerNodes: Array<WorkerNode<Worker, Data>>
b4904890
JB
134 /**
135 * Emitter on which events can be listened to.
136 *
137 * Events that can currently be listened to:
138 *
164d950a
JB
139 * - `'full'`: Emitted when the pool is dynamic and full.
140 * - `'busy'`: Emitted when the pool is busy.
b4904890
JB
141 */
142 readonly emitter?: PoolEmitter
c4855468
JB
143 /**
144 * Finds a free worker node key based on the number of tasks the worker has applied.
145 *
146 * If a worker is found with `0` running tasks, it is detected as free and its worker node key is returned.
147 *
148 * If no free worker is found, `-1` is returned.
149 *
150 * @returns A worker node key if there is one, `-1` otherwise.
151 */
152 findFreeWorkerNodeKey: () => number
729c563d 153 /**
bdede008 154 * Performs the task specified in the constructor with the data parameter.
729c563d 155 *
38e795c1 156 * @param data - The input for the specified task. This can only be serializable data.
729c563d
S
157 * @returns Promise that will be resolved when the task is successfully completed.
158 */
78cea37e 159 execute: (data: Data) => Promise<Response>
280c2a77 160 /**
675bb809 161 * Shutdowns every current worker in this pool.
280c2a77 162 */
78cea37e 163 destroy: () => Promise<void>
a35560ba 164 /**
bdede008 165 * Sets the worker choice strategy in this pool.
a35560ba 166 *
38e795c1 167 * @param workerChoiceStrategy - The worker choice strategy.
a35560ba 168 */
78cea37e 169 setWorkerChoiceStrategy: (workerChoiceStrategy: WorkerChoiceStrategy) => void
c97c7edb 170}