Use object factory design pattern for code handling workers.
[e-mobility-charging-stations-simulator.git] / src / charging-station / StationWorker.ts
CommitLineData
3d2ff9e4 1import { isMainThread, parentPort, workerData } from 'worker_threads';
3f40bc9c 2
6af9012e 3import ChargingStation from './ChargingStation';
5fdab605 4import Constants from '../utils/Constants';
6013bc53 5import Utils from '../utils/Utils';
7dde0b73
JB
6
7if (!isMainThread) {
6013bc53 8 // Add listener to start charging station from main thread
3d2ff9e4 9 addListener();
6013bc53
JB
10 if (!Utils.isUndefined(workerData)) {
11 startChargingStation({ index: workerData.index as number, templateFile: workerData.templateFile as string });
12 }
3d2ff9e4
J
13}
14
15function addListener() {
5fdab605 16 parentPort.on('message', (e) => {
97ed5cec 17 if (e.id === Constants.START_WORKER_ELEMENT) {
5fdab605 18 startChargingStation(e.workerData);
3d2ff9e4
J
19 }
20 });
21}
22
23function startChargingStation(data: any) {
24 const station = new ChargingStation(data.index as number, data.templateFile as string);
25 station.start();
7dde0b73 26}