refactor: cleanup types signature namespace
[e-mobility-charging-stations-simulator.git] / src / worker / WorkerTypes.ts
index 12d5ab26f13f7d62c408f20a8f55f09b862ca7b5..cfbe2dacb3b71cb9d6b755eb829468363454da62 100644 (file)
@@ -6,7 +6,7 @@ export enum WorkerProcessType {
   workerSet = 'workerSet',
   /** @experimental */
   dynamicPool = 'dynamicPool',
-  staticPool = 'staticPool',
+  fixedPool = 'fixedPool',
 }
 
 export interface SetInfo {
@@ -19,6 +19,8 @@ export interface SetInfo {
 }
 
 export enum WorkerSetEvents {
+  started = 'started',
+  stopped = 'stopped',
   error = 'error',
   elementStarted = 'elementStarted',
   elementError = 'elementError',