Fix worker with pool handling
[e-mobility-charging-stations-simulator.git] / src / types / ConfigurationData.ts
index 3f51cb85c951184d6efe680d06272236bce08339..bc4e0f8846225ffb7547d216e21bb05c340ddf5a 100644 (file)
@@ -7,13 +7,16 @@ export default interface ConfigurationData {
   supervisionURLs?: string[];
   stationTemplateURLs: StationTemplateURL[];
   statisticsDisplayInterval?: number;
-  autoReconnectTimeout?: number;
+  connectionTimeout?: number;
   autoReconnectMaxRetries?: number;
-  distributeStationToTenantEqually?: boolean;
+  distributeStationsToTenantsEqually?: boolean;
   useWorkerPool?: boolean;
   workerPoolSize?: number;
+  chargingStationsPerWorker?: number;
   logFormat?: string;
   logLevel?: string;
+  logRotate?: boolean;
+  logMaxFiles?: number;
   logFile?: string;
   logErrorFile?: string;
   logConsole?: boolean;