fix: brown paper bag issue at referencing the same literal object instance
[e-mobility-charging-stations-simulator.git] / src / worker / WorkerConstants.ts
CommitLineData
268a74bb 1export class WorkerConstants {
59b6ed8d
JB
2 public static readonly EMPTY_FUNCTION = Object.freeze(() => {
3 /* This is intentional */
4 });
5
6f96009b
JB
6 static readonly DEFAULT_ELEMENT_START_DELAY = 0;
7 static readonly DEFAULT_WORKER_START_DELAY = 500;
8 static readonly POOL_MAX_INACTIVE_TIME = 60000;
9 static readonly DEFAULT_POOL_MIN_SIZE = 4;
10 static readonly DEFAULT_POOL_MAX_SIZE = 16;
11 static readonly DEFAULT_ELEMENTS_PER_WORKER = 1;
4db8406c
JB
12
13 private constructor() {
14 // This is intentional
15 }
6f96009b 16}