예제 #1
0
 public InMemoryJobScheduler(IInMemoryJobSchedulerConfiguration schedulerConfiguration,
                             IInMemoryJobWorkerProcess workerProcess, IInMemoryJobSchedulerProcess schedulerProcess)
 {
     this.schedulerConfiguration = schedulerConfiguration;
     this.workerProcess          = workerProcess;
     this.schedulerProcess       = schedulerProcess;
 }
예제 #2
0
 public InMemoryJobsModule(IInMemoryJobSchedulerConfiguration schedulerConfiguration, bool isActive)
 {
     this.schedulerConfiguration = schedulerConfiguration;
     this.isActive = isActive;
 }
예제 #3
0
 public InMemoryJobWorkerProcess(IJobRunner jobRunner, IInMemoryJobSchedulerConfiguration schedulerConfiguration)
 {
     this.jobRunner = jobRunner;
     this.schedulerConfiguration = schedulerConfiguration;
 }