public OneTimeJobScheduler( InstanceContext tenantContext, JobMonitoringService monitoringService, ExecutionLogService executionLogService) { _tenantContext = tenantContext; _monitoringService = monitoringService; _executionLogService = executionLogService; }
public JobRunner( ProcessDirector processDirector, InstanceContext instanceContext, JobMonitoringService jobMonitoringService, ExecutionLogService executionLogService, OneTimeJobScheduler oneTimeJobScheduler, IPushLogger logger) { _processDirector = processDirector; _instanceContext = instanceContext; _jobMonitoringService = jobMonitoringService; _executionLogService = executionLogService; _oneTimeJobScheduler = oneTimeJobScheduler; _logger = logger; }