public OnlineTaskQueue(int userId, INotifyUsersOfTasks taskNotifier, IQueueStorage queueStorage)
     : base(userId, taskNotifier, queueStorage)
 {
 }
 public NotifyingTaskQueue(int userId, INotifyUsersOfTasks taskNotificationService, IQueueStorage queueStorage)
     : base(userId, queueStorage)
 {
     this.taskNotificationService = taskNotificationService;
 }
 public OnlineTaskQueue(int userId, INotifyUsersOfTasks taskNotifier)
     : this(userId, taskNotifier, new InMemoryQueueStorage())
 {
 }
Example #4
0
 public DefaultQueueFactory(INotifyUsersOfTasks taskNotifier, IDocumentStore documentStore)
 {
     this.taskNotifier  = taskNotifier;
     this.documentStore = documentStore;
 }
 public NotifyingTaskQueue(int userId, INotifyUsersOfTasks taskNotificationService, IQueueStorage queueStorage) : base(userId, queueStorage)
 {
     this.taskNotificationService = taskNotificationService;
 }
Example #6
0
 public OnlineTaskQueue(int userId, INotifyUsersOfTasks taskNotifier) : this(userId, taskNotifier, new InMemoryQueueStorage())
 {
 }
Example #7
0
 public OnlineTaskQueue(int userId, INotifyUsersOfTasks taskNotifier, IQueueStorage queueStorage) : base(userId, taskNotifier, queueStorage)
 {
 }