Ejemplo n.º 1
0
 public SchedulerService(IBus bus, IRawByteBus rawByteBus, ILog log, IScheduleRepository scheduleRepository)
 {
     this.bus = bus;
     this.scheduleRepository = scheduleRepository;
     this.rawByteBus = rawByteBus;
     this.log = log;
 }
Ejemplo n.º 2
0
 public SchedulerService(
     IBus bus,
     IRawByteBus rawByteBus,
     IEasyNetQLogger log,
     IScheduleRepository scheduleRepository,
     SchedulerServiceConfiguration configuration)
 {
     this.bus = bus;
     this.scheduleRepository = scheduleRepository;
     this.configuration      = configuration;
     this.rawByteBus         = rawByteBus;
     this.log = log;
 }
Ejemplo n.º 3
0
 public SchedulerService(
     IBus bus, 
     IRawByteBus rawByteBus,
     IEasyNetQLogger log, 
     IScheduleRepository scheduleRepository, 
     SchedulerServiceConfiguration configuration)
 {
     this.bus = bus;
     this.scheduleRepository = scheduleRepository;
     this.configuration = configuration;
     this.rawByteBus = rawByteBus;
     this.log = log;
 }
Ejemplo n.º 4
0
 public SchedulerService(
     IBus bus, 
     IRawByteBus rawByteBus,
     IEasyNetQLogger log, 
     IScheduleRepository scheduleRepository, 
     Func<DateTime> now)
 {
     this.bus = bus;
     this.scheduleRepository = scheduleRepository;
     this.now = now;
     this.rawByteBus = rawByteBus;
     this.log = log;
 }
Ejemplo n.º 5
0
 public SpringEnhancedJobFactory(IRawByteBus bus)
 {
     _bus = bus;
 }