@@ -369,13 +369,23 @@ string BasicConsume(
369
369
/// </remarks>
370
370
void QueueBindNoWait ( string queue , string exchange , string routingKey , IDictionary < string , object > arguments ) ;
371
371
372
- /// <summary> Declare a queue.</summary>
372
+ /// <summary> Declare a queue.</summary>
373
+ /// <param name="queue">The name of the queue</param>
374
+ /// <param name="durable">The queue will survive a broker restart</param>
375
+ /// <param name="exclusive">Used by only one connection and the queue will be deleted when that connection closes</param>
376
+ /// <param name="autoDelete">Queue that has had at least one consumer is deleted when last consumer unsubscribes</param>
377
+ /// <param name="arguments">Optional; used by plugins and broker-specific features such as message TTL, queue length limit, etc</param>
373
378
QueueDeclareOk QueueDeclare ( string queue , bool durable , bool exclusive , bool autoDelete , IDictionary < string , object > arguments ) ;
374
379
375
380
/// <summary>
376
381
/// Same as QueueDeclare but sets nowait to true and returns void (as there
377
382
/// will be no response from the server).
378
383
/// </summary>
384
+ /// <param name="queue">The name of the queue</param>
385
+ /// <param name="durable">The queue will survive a broker restart</param>
386
+ /// <param name="exclusive">Used by only one connection and the queue will be deleted when that connection closes</param>
387
+ /// <param name="autoDelete">Queue that has had at least one consumer is deleted when last consumer unsubscribes</param>
388
+ /// <param name="arguments">Optional; used by plugins and broker-specific features such as message TTL, queue length limit, etc</param>
379
389
void QueueDeclareNoWait ( string queue , bool durable , bool exclusive , bool autoDelete , IDictionary < string , object > arguments ) ;
380
390
381
391
/// <summary>Declare a queue passively.</summary>
0 commit comments