@@ -536,23 +536,25 @@ void QueueDeclareNoWait(string queue, bool durable,
536
536
bool WaitForConfirms ( TimeSpan timeout , out bool timedOut ) ;
537
537
538
538
/// <summary>
539
- /// Wait until all published messages have been confirmed.
539
+ /// Wait until all published messages on this channel have been confirmed.
540
540
/// </summary>
541
541
/// <remarks>
542
- /// Waits until all messages published since the last call have
543
- /// been ack'd by the broker. If a nack is received, throws an
544
- /// OperationInterrupedException exception immediately.
542
+ /// Waits until all messages published on this channel since the last call have
543
+ /// been ack'd by the broker. If a nack is received, throws an
544
+ /// OperationInterrupedException exception immediately
545
+ /// and closes the channel.
545
546
/// </remarks>
546
547
[ AmqpMethodDoNotImplement ( null ) ]
547
548
void WaitForConfirmsOrDie ( ) ;
548
549
549
550
/// <summary>
550
- /// Wait until all published messages have been confirmed.
551
+ /// Wait until all published messages on this channel have been confirmed.
551
552
/// </summary>
552
553
/// <remarks>
553
- /// Waits until all messages published since the last call have
554
- /// been ack'd by the broker. If a nack is received or the timeout
555
- /// elapses, throws an OperationInterruptedException exception immediately.
554
+ /// Waits until all messages published on this channel since the last call have
555
+ /// been ack'd by the broker. If a nack is received or the timeout
556
+ /// elapses, throws an OperationInterruptedException exception immediately
557
+ /// and closes the channel.
556
558
/// </remarks>
557
559
[ AmqpMethodDoNotImplement ( null ) ]
558
560
void WaitForConfirmsOrDie ( TimeSpan timeout ) ;
0 commit comments