fix: avoid worker-threads restart at error during startup
[e-mobility-charging-stations-simulator.git] / src / worker / index.ts
index 036ddaf168f69253e2618153617ad6f75bb38b49..e53c3457fa636e3496ce8ab823b19f41d5965f7c 100644 (file)
@@ -1,10 +1,16 @@
 export type { WorkerAbstract } from './WorkerAbstract';
-export { WorkerConstants } from './WorkerConstants';
+export {
+  DEFAULT_ELEMENT_START_DELAY,
+  DEFAULT_POOL_MAX_SIZE,
+  DEFAULT_POOL_MIN_SIZE,
+  DEFAULT_WORKER_START_DELAY,
+  POOL_MAX_INACTIVE_TIME,
+} from './WorkerConstants';
 export { WorkerFactory } from './WorkerFactory';
 export {
-  WorkerProcessType,
   type WorkerData,
+  WorkerEvents,
   type WorkerMessage,
   WorkerMessageEvents,
-  type MessageHandler,
+  WorkerProcessType,
 } from './WorkerTypes';