FunctionalStrategyStartingEvent
data class FunctionalStrategyStartingEvent(val runId: String, val strategyName: String, val timestamp: Long = Clock.System.now().toEpochMilliseconds()) : StrategyStartingEvent(source)
Represents an event triggered at the start of executing a functional strategy by an AI agent.
This event provides specific information about the initiation of a functional strategy, including the unique identifier of the run and the strategy name. It is intended to support monitoring, debugging, and tracking of functional strategy execution within the lifecycle of an AI agent's processes. This class extends StrategyStartingEvent, inheriting shared properties and behavior for strategy execution events.