Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the topic path in microsoft service bus?

For this method:

public static SubscriptionClient CreateFromConnectionString(string connectionString, string topicPath, string name)

What is the topicPath?

MSDN says it is "The full pathname of the topic."

What is the pathname?

There are code examples, but I have yet to find one that explain this little detail.

like image 632
ChasetopherB Avatar asked Mar 28 '17 19:03

ChasetopherB


People also ask

What are topics in Service Bus?

A topic subscription resembles a virtual queue that receives copies of the messages that are sent to the topic. Consumers receive messages from a subscription identically to the way they receive messages from a queue.

What are the topics in Azure?

Important components of Microsoft Azure are Compute, Storage, Database, Monitoring & management services, Content Delivery Network, Azure Networking, Web & Mobile services, etc.

Is Azure Service Bus topic FIFO?

It's important to know that Service Bus supports FIFO pattern and is the best option on Azure to serve that requirement.


1 Answers

Topic path is the same string that was used as topic's name to create it. See examples here: https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-dotnet-how-to-use-topics-subscriptions

Note ASB names are subject to some limitations: https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-quotas

like image 135
Slava Asipenko Avatar answered Oct 02 '22 19:10

Slava Asipenko