public BasicGetResult BasicGet(string queue,
                                bool autoAck)
 {
     return(_delegate.BasicGet(queue, autoAck));
 }
Ejemplo n.º 2
0
 public BasicGetResult BasicGet(string queue,
                                bool noAck)
 {
     return(m_delegate.BasicGet(queue, noAck));
 }
Ejemplo n.º 3
0
 public Task <BasicGetResult> BasicGet(string queue,
                                       bool autoAck)
 {
     return(m_delegate.BasicGet(queue, autoAck));
 }