public void Init(IInMemoryPriorityQueue<GenericPriorityMessage<BasicDeliverEventArgs>> priorityQueue, CompositeSubscription subscription, uint priority, string sharedSemaphore) { if (priorityQueue == null) { throw new ArgumentNullException("priorityQueue"); } if (subscription == null) { throw new ArgumentNullException("subscription"); } if (string.IsNullOrEmpty(sharedSemaphore)) { throw new ArgumentNullException("sharedSemaphore"); } _queuePriorirty = priority; _subscription = subscription; _sharedSemaphore = sharedSemaphore; PriorityQueue = priorityQueue; PriorityQueue.DeleteAll(msg => msg.Priority == priority); }
public void Init(IInMemoryPriorityQueue <GenericPriorityMessage <BasicDeliverEventArgs> > priorityQueue, CompositeSubscription subscription, uint priority, string sharedSemaphore) { if (priorityQueue == null) { throw new ArgumentNullException("priorityQueue"); } if (subscription == null) { throw new ArgumentNullException("subscription"); } if (string.IsNullOrEmpty(sharedSemaphore)) { throw new ArgumentNullException("sharedSemaphore"); } _queuePriorirty = priority; _subscription = subscription; _sharedSemaphore = sharedSemaphore; PriorityQueue = priorityQueue; PriorityQueue.DeleteAll(msg => msg.Priority == priority); }