Interface EventHubsProvisioner
-
public interface EventHubsProvisionerAn interface to provision Event Hubs resources.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprovisionConsumerGroup(String namespace, String eventHub, String consumerGroup)Provision the namespace, event hub and consumer group of the Event Hubs.voidprovisionEventHub(String namespace, String eventHub)Provision the namespace and event hub of the Event Hubs.voidprovisionNamespace(String namespace)Provision the namespace of the Event Hubs.
-
-
-
Method Detail
-
provisionNamespace
void provisionNamespace(String namespace)
Provision the namespace of the Event Hubs.- Parameters:
namespace- the namespace of the Event Hubs.
-
provisionEventHub
void provisionEventHub(String namespace, String eventHub)
Provision the namespace and event hub of the Event Hubs.- Parameters:
namespace- the namespace of the Event Hubs.eventHub- the event hub of the Event Hubs.
-
provisionConsumerGroup
void provisionConsumerGroup(String namespace, String eventHub, String consumerGroup)
Provision the namespace, event hub and consumer group of the Event Hubs.- Parameters:
namespace- the namespace of the Event Hubs.eventHub- the event hub of the Event Hubs.consumerGroup- the consumer of the event hub.
-
-