Fix documentation generation
[poolifier.git] / src / pools / pool-internal.ts
CommitLineData
a35560ba 1import type { IPool } from './pool'
ea7a90d3 2import type { IPoolWorker } from './pool-worker'
a35560ba 3
7c0ba920 4/**
b4904890 5 * Internal pool types.
7c0ba920
JB
6 */
7export enum PoolType {
8 FIXED = 'fixed',
9 DYNAMIC = 'dynamic'
10}
11
bf9549ae 12/**
b4904890 13 * Internal tasks usage statistics.
bf9549ae
JB
14 */
15export interface TasksUsage {
16 run: number
17 running: number
18 runTime: number
19 avgRunTime: number
20}
21
a35560ba
S
22/**
23 * Internal contract definition for a poolifier pool.
24 *
25 * @template Worker Type of worker which manages this pool.
26 * @template Data Type of data sent to the worker.
27 * @template Response Type of response of execution.
28 */
29export interface IPoolInternal<
ea7a90d3 30 Worker extends IPoolWorker,
a35560ba
S
31 Data = unknown,
32 Response = unknown
33> extends IPool<Data, Response> {
34 /**
35 * List of currently available workers.
36 */
37 readonly workers: Worker[]
38
ea7a90d3
JB
39 /**
40 * The workers tasks usage map.
41 *
42 * `key`: The `Worker`
43 * `value`: Worker tasks usage statistics.
44 */
45 readonly workersTasksUsage: Map<Worker, TasksUsage>
46
a35560ba 47 /**
7c0ba920 48 * Pool type.
a35560ba 49 *
7c0ba920 50 * If it is `'dynamic'`, it provides the `max` property.
a35560ba 51 */
7c0ba920 52 readonly type: PoolType
ff5e76e1
JB
53
54 /**
55 * Maximum number of workers that can be created by this pool.
56 */
57 readonly max?: number
7c0ba920
JB
58
59 /**
60 * Whether the pool is busy or not.
61 *
62 * The pool busyness boolean status.
63 */
64 readonly busy: boolean
65
66 /**
67 * Number of tasks currently concurrently running.
68 */
69 readonly numberOfRunningTasks: number
70
71 /**
8accb8d5 72 * Finds a free worker based on the number of tasks the worker has applied.
7c0ba920 73 *
bdaf31cd 74 * If a worker is found with `0` running tasks, it is detected as free and returned.
7c0ba920 75 *
bdaf31cd 76 * If no free worker is found, `false` is returned.
7c0ba920 77 *
bdaf31cd 78 * @returns A free worker if there is one, otherwise `false`.
7c0ba920 79 */
bdaf31cd
JB
80 findFreeWorker(): Worker | false
81
82 /**
8accb8d5 83 * Gets worker index.
bdaf31cd
JB
84 *
85 * @param worker The worker.
86 * @returns The worker index.
87 */
88 getWorkerIndex(worker: Worker): number
89
90 /**
8accb8d5 91 * Gets worker running tasks.
bdaf31cd
JB
92 *
93 * @param worker The worker.
94 * @returns The number of tasks currently running on the worker.
95 */
96 getWorkerRunningTasks(worker: Worker): number | undefined
bf9549ae
JB
97
98 /**
8accb8d5 99 * Gets worker average tasks runtime.
bf9549ae
JB
100 *
101 * @param worker The worker.
23135a89 102 * @returns The average tasks runtime on the worker.
bf9549ae
JB
103 */
104 getWorkerAverageTasksRunTime(worker: Worker): number | undefined
a35560ba 105}