refactor(simulator): switch to named exports
[e-mobility-charging-stations-simulator.git] / src / worker / WorkerConstants.ts
CommitLineData
268a74bb 1export class WorkerConstants {
6f96009b
JB
2 static readonly DEFAULT_ELEMENT_START_DELAY = 0;
3 static readonly DEFAULT_WORKER_START_DELAY = 500;
4 static readonly POOL_MAX_INACTIVE_TIME = 60000;
5 static readonly DEFAULT_POOL_MIN_SIZE = 4;
6 static readonly DEFAULT_POOL_MAX_SIZE = 16;
7 static readonly DEFAULT_ELEMENTS_PER_WORKER = 1;
4db8406c
JB
8
9 private constructor() {
10 // This is intentional
11 }
6f96009b 12}