Fix worker with pool handling
[e-mobility-charging-stations-simulator.git] / src / utils / Constants.ts
index 6e5eb6972441ecb4109906591d1010c50ed5f2c9..e6d103862c3f8182fc925b9deb931893043e501b 100644 (file)
@@ -33,7 +33,10 @@ export default class Constants {
   static readonly CHARGING_STATION_DEFAULT_RESET_TIME = 60000; // Ms
   static readonly CHARGING_STATION_ATG_WAIT_TIME = 2000; // Ms
 
-  static readonly TRANSACTION_DEFAULT_IDTAG = '00000000';
+  static readonly TRANSACTION_DEFAULT_TAGID = '00000000';
 
-  static readonly START_NEW_CHARGING_STATION = 'startNewChargingStation';
+  static readonly MAX_LISTENERS = 1000;
+
+  static readonly START_WORKER_DELAY = 500;
+  static readonly START_WORKER_ELEMENT = 'startWorkerElement';
 }