public QueueHandle CreateQueue(string name, bool durable, bool autoDelete, IDictionary <string, object> queueAttributes = null,
                                IDictionary <string, object> queueSubscriptionAttributes = null, IDictionary <string, string> tags = null)
 {
     return(_builder.CreateQueue(name, durable, autoDelete, queueAttributes, queueSubscriptionAttributes, tags));
 }
 public QueueHandle CreateQueue(QueueDescription queueDescription)
 {
     return(_builder.CreateQueue(queueDescription));
 }
 public QueueHandle CreateQueue(string name, bool durable, bool autoDelete)
 {
     return(_builder.CreateQueue(name, durable, autoDelete));
 }
Exemplo n.º 4
0
 public QueueHandle CreateQueue(string name, bool durable, bool autoDelete, IDictionary <string, object> attributes = null)
 {
     return(_builder.CreateQueue(name, durable, autoDelete, attributes));
 }