X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2FWorkerTypes.ts;h=cfbe2dacb3b71cb9d6b755eb829468363454da62;hb=94327d938c08c347d44ea685e38cb05ff9c3e548;hp=653cfedf66d58c4855387da0393f03b97e9b8af8;hpb=2bb7a73e94db7533c1ba47db677d709e6f07dfdb;p=e-mobility-charging-stations-simulator.git diff --git a/src/worker/WorkerTypes.ts b/src/worker/WorkerTypes.ts index 653cfedf..cfbe2dac 100644 --- a/src/worker/WorkerTypes.ts +++ b/src/worker/WorkerTypes.ts @@ -6,7 +6,7 @@ export enum WorkerProcessType { workerSet = 'workerSet', /** @experimental */ dynamicPool = 'dynamicPool', - staticPool = 'staticPool', + fixedPool = 'fixedPool', } export interface SetInfo { @@ -19,7 +19,11 @@ export interface SetInfo { } export enum WorkerSetEvents { + started = 'started', + stopped = 'stopped', error = 'error', + elementStarted = 'elementStarted', + elementError = 'elementError', } export const WorkerEvents = {