Variable ExecutionContextServiceConst
ExecutionContextService: new () => { context: IExecutionContext } & Omit<
new (context: IExecutionContext) => { context: IExecutionContext },
"prototype",
> & di_scoped.IScopedClassRun<[context: IExecutionContext]>
Scoped service class providing execution context information in the swarm system. Stores and exposes an IExecutionContext object (clientId, executionId, processId) via dependency injection, scoped using di-scoped for execution-specific instances. Integrates with ClientAgent (e.g., EXECUTE_FN execution context), PerfService (e.g., execution tracking in startExecution), BusService (e.g., execution events in commitExecutionBegin), and LoggerService (e.g., context logging in info). Provides a lightweight, immutable context container for tracking execution metadata across the system.