Exemplo n.º 1
0
 public OperationsLauncher(
     IDateTimeFactory dateTimeFactory,
     IScheduler scheduler,
     IOperationsLog operationsLog,
     ILoggerFactory loggerFactory)
 {
     this.dateTimeFactory = dateTimeFactory;
     this.scheduler       = scheduler;
     this.operationsLog   = operationsLog;
     this.loggerFactory   = loggerFactory;
 }
Exemplo n.º 2
0
 public Scheduler(
     IOperationsLog operationsLog)
 {
     this.operationsLog = operationsLog;
     paramsIndex        = new ConcurrentDictionary <string, ScheduleParams>();
 }