Package | Description |
---|---|
com.microsoft.azure.servicebus.management |
Modifier and Type | Method and Description |
---|---|
TopicDescription |
ManagementClient.createTopic(String topicPath)
Creates a new topic in the service namespace with the given name.
|
TopicDescription |
ManagementClient.createTopic(TopicDescription topicDescription)
Creates a new topic in the service namespace with the given name.
|
TopicDescription |
ManagementClient.getTopic(String path)
Retrieves a topic from the service namespace
|
TopicDescription |
ManagementClient.updateTopic(TopicDescription topicDescription)
Updates an existing topic.
|
Modifier and Type | Method and Description |
---|---|
CompletableFuture<TopicDescription> |
ManagementClientAsync.createTopicAsync(String topicPath)
Creates a new topic in the service namespace with the given name.
|
CompletableFuture<TopicDescription> |
ManagementClientAsync.createTopicAsync(TopicDescription topicDescription)
Creates a new topic in the service namespace with the given name.
|
CompletableFuture<TopicDescription> |
ManagementClientAsync.getTopicAsync(String path)
Retrieves a topic from the service namespace
|
List<TopicDescription> |
ManagementClient.getTopics()
Retrieves the list of topics present in the namespace.
|
List<TopicDescription> |
ManagementClient.getTopics(int count,
int skip)
Retrieves the list of topics present in the namespace.
|
CompletableFuture<List<TopicDescription>> |
ManagementClientAsync.getTopicsAsync()
Retrieves the list of topics present in the namespace.
|
CompletableFuture<List<TopicDescription>> |
ManagementClientAsync.getTopicsAsync(int count,
int skip)
Retrieves the list of topics present in the namespace.
|
CompletableFuture<TopicDescription> |
ManagementClientAsync.updateTopicAsync(TopicDescription topicDescription)
Updates an existing topic.
|
Modifier and Type | Method and Description |
---|---|
TopicDescription |
ManagementClient.createTopic(TopicDescription topicDescription)
Creates a new topic in the service namespace with the given name.
|
CompletableFuture<TopicDescription> |
ManagementClientAsync.createTopicAsync(TopicDescription topicDescription)
Creates a new topic in the service namespace with the given name.
|
TopicDescription |
ManagementClient.updateTopic(TopicDescription topicDescription)
Updates an existing topic.
|
CompletableFuture<TopicDescription> |
ManagementClientAsync.updateTopicAsync(TopicDescription topicDescription)
Updates an existing topic.
|
Copyright © 2019 Microsoft Corporation. All rights reserved.