Skip to content

Commit dbdecf6

Browse files
Doc clarifications, part of #1234
(cherry picked from commit dcbc380)
1 parent ec8e552 commit dbdecf6

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

projects/RabbitMQ.Client/client/api/IModel.cs

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -536,23 +536,25 @@ void QueueDeclareNoWait(string queue, bool durable,
536536
bool WaitForConfirms(TimeSpan timeout, out bool timedOut);
537537

538538
/// <summary>
539-
/// Wait until all published messages have been confirmed.
539+
/// Wait until all published messages on this channel have been confirmed.
540540
/// </summary>
541541
/// <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.
545546
/// </remarks>
546547
[AmqpMethodDoNotImplement(null)]
547548
void WaitForConfirmsOrDie();
548549

549550
/// <summary>
550-
/// Wait until all published messages have been confirmed.
551+
/// Wait until all published messages on this channel have been confirmed.
551552
/// </summary>
552553
/// <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.
556558
/// </remarks>
557559
[AmqpMethodDoNotImplement(null)]
558560
void WaitForConfirmsOrDie(TimeSpan timeout);

0 commit comments

Comments
 (0)