You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Declares a queue. See the <a href="https://www.rabbitmq.com/queues.html">Queues guide</a> to learn more.
397
+
/// </summary>
398
+
/// <param name="queue">The name of the queue. Pass an empty string to make the server generate a name.</param>
399
+
/// <param name="durable">Should this queue will survive a broker restart?</param>
400
+
/// <param name="exclusive">Should this queue use be limited to its declaring connection? Such a queue will be deleted when its declaring connection closes.</param>
401
+
/// <param name="autoDelete">Should this queue be auto-deleted when its last consumer (if any) unsubscribes?</param>
402
+
/// <param name="arguments">Optional; additional queue arguments, e.g. "x-queue-type"</param>
0 commit comments