public StatusController(ICacheClient cacheClient, IMessagePublisher messagePublisher, SystemHealthChecker healthChecker, IQueue <EventPost> eventQueue, IQueue <MailMessage> mailQueue, IQueue <EventNotificationWorkItem> notificationQueue, IQueue <WebHookNotification> webHooksQueue, IQueue <EventUserDescription> userDescriptionQueue, IMetricsClient metricsClient)
 {
     _cacheClient          = cacheClient;
     _messagePublisher     = messagePublisher;
     _healthChecker        = healthChecker;
     _eventQueue           = eventQueue;
     _mailQueue            = mailQueue;
     _notificationQueue    = notificationQueue;
     _webHooksQueue        = webHooksQueue;
     _userDescriptionQueue = userDescriptionQueue;
 }
Esempio n. 2
0
 public StatusController(SystemHealthChecker healthChecker, IQueue <EventPost> eventQueue, IQueue <MailMessage> mailQueue,
                         IQueue <EventNotification> notificationQueue, IQueue <WebHookNotification> webHooksQueue, IQueue <EventUserDescription> userDescriptionQueue, IMetricsClient metricsClient)
 {
     _healthChecker        = healthChecker;
     _eventQueue           = eventQueue;
     _mailQueue            = mailQueue;
     _notificationQueue    = notificationQueue;
     _webHooksQueue        = webHooksQueue;
     _userDescriptionQueue = userDescriptionQueue;
     _metricsClient        = metricsClient;
 }
 public SystemHealthCheckerTests(ITestOutputHelper output) : base(output)
 {
     _checker = GetService <SystemHealthChecker>();
 }
Esempio n. 4
0
 public StatusController(SystemHealthChecker healthChecker)
 {
     _healthChecker = healthChecker;
 }