Example #1
0
 public IcmPollingHandler(
     IExchangePollingService exchangePollingService,
     ILog log,
     int pollingPeriodMilliseconds)
     : base(exchangePollingService, log, "icm", pollingPeriodMilliseconds)
 {
 }
Example #2
0
        protected ExchangePollingHandler(
            IExchangePollingService exchangePollingService,
            ILog log,
            string exchangeName,
            int pollingPeriodMilliseconds)
            : base(nameof(ExchangePollingHandler), pollingPeriodMilliseconds, log)
        {
            _exchangePollingService = exchangePollingService;

            ExchangeName = exchangeName;

            _pollingPeriodMilliseconds = pollingPeriodMilliseconds;
        }