Fix worker startup and cleanup some attributes in Wrk class.
[e-mobility-charging-stations-simulator.git] / src / charging-station / StationWorker.ts
... / ...
CommitLineData
1import { isMainThread, parentPort, workerData } from 'worker_threads';
2
3import ChargingStation from './ChargingStation';
4import Constants from '../utils/Constants';
5
6if (!isMainThread) {
7 startChargingStation({ index: workerData.index as number, templateFile: workerData.templateFile as string });
8
9 // Listener: start new charging station from main thread
10 addListener();
11}
12
13function addListener() {
14 parentPort.setMaxListeners(Constants.MAX_LISTENERS);
15 parentPort.on('message', (e) => {
16 if (e.id === Constants.START_WORKER_ELEMENT) {
17 startChargingStation(e.workerData);
18 }
19 });
20}
21
22function startChargingStation(data: any) {
23 const station = new ChargingStation(data.index as number, data.templateFile as string);
24 station.start();
25}