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