public EventsProcessor(ITableStorage <Event> eventStorage, INotificationChannelFactory channelFactory)
 {
     this.eventStorage   = eventStorage;
     this.channelFactory = channelFactory;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the NotificationQueue class.
 /// </summary>
 /// <param name="channelFactory">A notification channel factory.</param>
 public NotificationQueue(INotificationChannelFactory channelFactory)
 {
     Throw.IfArgumentNull(channelFactory, nameof(channelFactory));
     this.channelFactory = channelFactory;
 }