Esempio n. 1
0
 public CommunicationHousekeepingRequestSubscriber(
     ILogService logService,
     IRootCommunicationHousekeeper housekeeper)
 {
     _logService  = logService;
     _housekeeper = housekeeper;
 }
Esempio n. 2
0
 public HousekeepingControlQueueConsumer(
     ILogService logger,
     IJobControlQueue <StorageQueueMessage> messageService,
     ICandidateProcessor candidateProcessor,
     IRootApplicationHousekeeper rootApplicationHousekeeper,
     IRootCommunicationHousekeeper rootCommunicationHousekeeper)
     : base(messageService, logger, "Housekeeping", ScheduledJobQueues.Housekeeping)
 {
     _candidateProcessor           = candidateProcessor;
     _rootApplicationHousekeeper   = rootApplicationHousekeeper;
     _rootCommunicationHousekeeper = rootCommunicationHousekeeper;
 }