Beispiel #1
0
 public OoievaarClient(IConfiguration pConfig)
 {
     _config     = pConfig;
     _redisQueue = new RedisQueue(_config);
 }
 public TaskSchedulerWorker(IRedisSequence <PrintAtTaskDto> scheduledTasks, IRedisQueue <PrintAtTaskDto> tasksToPrint, ILockRegistry lockRegistry)
 {
     _scheduledTasks = scheduledTasks;
     _tasksToPrint   = tasksToPrint;
     _lockRegistry   = lockRegistry;
 }
Beispiel #3
0
 public OoievaarController(IRedisQueue pRedisQueue)
 {
     _redisQueue = pRedisQueue;
 }
 public PrintTaskWorker(IRedisQueue <PrintAtTaskDto> tasksToPrint)
 {
     _tasksToPrint = tasksToPrint;
 }