public TimerService( IRunnerStateService runnerStateService, IConfigurationService configurationService, ICloudIntegrationService cloudIntegrationService) { this.runnerStateService = runnerStateService; this.cloudIntegrationService = cloudIntegrationService; this.runnerConfig = configurationService.RunnerConfig; }
public ConnectionsController( IRunnerStateService runnerStateService, IHubContext <RunnerHub> hubContext, ICloudIntegrationService cloudIntegrationService) { this.runnerStateService = runnerStateService; this.hubContext = hubContext; this.cloudIntegrationService = cloudIntegrationService; }
public RunnerHub( IRunnerStateService runnerStateService, IConfigurationService runnerConfig, IHostApplicationLifetime appLifetime, ICloudIntegrationService cloudIntegrationService) { this.runnerStateService = runnerStateService; this.runnerConfig = runnerConfig.RunnerConfig; applicationLifetime = appLifetime; this.cloudIntegrationService = cloudIntegrationService; }