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