Interface ServiceBusProvisioner
public interface ServiceBusProvisioner
An interface to provision Service Bus queue resources.
-
Method Summary
Modifier and TypeMethodDescriptionvoidprovisionQueue(String namespace, String queue) Provision the namespace and queue of the Service Bus.voidprovisionSubscription(String namespace, String topic, String subscription) Provision the namespace and topic of the Service Bus.voidprovisionTopic(String namespace, String topic) Provision the namespace and topic of the Service Bus.
-
Method Details
-
provisionQueue
Provision the namespace and queue of the Service Bus.- Parameters:
namespace- the namespace of the Service Bus.queue- the queue of the Service Bus.
-
provisionTopic
Provision the namespace and topic of the Service Bus.- Parameters:
namespace- the namespace of the Service Bus.topic- the topic of the Service Bus.
-
provisionSubscription
Provision the namespace and topic of the Service Bus.- Parameters:
namespace- the namespace of the Service Bus.topic- the topic of the Service Bus.subscription- the subscription of the topic.
-