public void RemoveQueuedEvents(ProxyEventQueueQuery query)
 {
     Queue.RemoveQueuedEvents(query.GetEventQueueQuery());
 }
Example #2
0
 public void RemoveQueuedEvents(ProxyEventQueueQuery query)
 {
     base.Channel.RemoveQueuedEvents(query);
 }
 public IEnumerable <ProxyQueuedEvent> GetQueuedEvents(ProxyEventQueueQuery query)
 {
     return(Queue.GetQueuedEvents(query.GetEventQueueQuery()).Select(oQueuedEvent => new ProxyQueuedEvent(oQueuedEvent)));
 }
Example #4
0
 public IEnumerable <ProxyQueuedEvent> GetQueuedEvents(ProxyEventQueueQuery query)
 {
     return(base.Channel.GetQueuedEvents(query));
 }