ServiceBusAdministrationClient.createQueue Method
Definition
Overloads
| createQueue(String queueName) |
Creates a queue with the given name. |
| createQueue(String queueName, CreateQueueOptions queueOptions) |
Creates a queue with the CreateQueueOptions. |
createQueue(String queueName)
Creates a queue with the given name.
public QueueProperties createQueue(String queueName)
Parameters
- queueName
- java.lang.String
Name of the queue to create.
Returns
The created queue.
createQueue(String queueName, CreateQueueOptions queueOptions)
Creates a queue with the CreateQueueOptions.
public QueueProperties createQueue(String queueName, CreateQueueOptions queueOptions)
Parameters
- queueName
- java.lang.String
Name of the queue to create.
- queueOptions
- CreateQueueOptions
Information about the queue to create.
Returns
The created queue.