public StoredNotificationsDispatchChannel(IStoredNotificationDispatcher <TKey> storedNotificationsDispatcher)
 {
     Dispatcher   = storedNotificationsDispatcher;
     LimitCounter = new NoLimitCounter();
     Interrupter  = new ProgressiveTimeoutInterrupter <TKey>();
     DeliveryType = (int)DeliveryTypes.StoredNotifications;
 }
Exemplo n.º 2
0
 //init
 public DispatchChannel()
 {
     LimitCounter = new NoLimitCounter();
     Interrupter  = new ProgressiveTimeoutInterrupter <TKey>();
 }