Interface IStrategyProviderExtension


public interface IStrategyProviderExtension
Defines the contract for extensions that provide strategies. Implementations of this interface are responsible for generating a list of strategies (IStrategy) based on telemetry data at a specific time.
  • Method Summary

    Modifier and Type
    Method
    Description
    generate(TelemetryManager telemetryManager, Long strategyTime)
    Generates and returns a list of strategies (IStrategy) based on the provided telemetry data and strategy time.
  • Method Details

    • generate

      List<IStrategy> generate(TelemetryManager telemetryManager, Long strategyTime)
      Generates and returns a list of strategies (IStrategy) based on the provided telemetry data and strategy time.
      Parameters:
      telemetryManager - The TelemetryManager providing access to telemetry data and metrics.
      strategyTime - A Long value representing the time at which the strategies need to be applied.
      Returns:
      A List of IStrategy instances that have been generated based on the telemetry data and strategy time.