X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FConfigurationData.ts;h=6d67a06e741207fb670fa712e716e9aa662a33d7;hb=c56d42f1989acd8c336fb165d5e295245adb37fa;hp=125ecef636d693afc840fd16b35abde81308a0ec;hpb=a4624c96a6c159b4885f5d0baaf592ceec0bab30;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ConfigurationData.ts b/src/types/ConfigurationData.ts index 125ecef6..6d67a06e 100644 --- a/src/types/ConfigurationData.ts +++ b/src/types/ConfigurationData.ts @@ -1,3 +1,4 @@ +import type { WorkerChoiceStrategy } from 'poolifier'; import { WorkerProcessType } from './Worker'; export interface StationTemplateURL { @@ -13,8 +14,10 @@ export default interface ConfigurationData { autoReconnectMaxRetries?: number; distributeStationsToTenantsEqually?: boolean; workerProcess?: WorkerProcessType; + workerStartDelay?: number; workerPoolMinSize?: number; workerPoolMaxSize?: number; + workerPoolStrategy?: WorkerChoiceStrategy; chargingStationsPerWorker?: number; logFormat?: string; logLevel?: string;