From the course: Developing Long-Running Tasks with Microsoft Azure

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Azure Service Bus overview

Azure Service Bus overview - Azure Tutorial

From the course: Developing Long-Running Tasks with Microsoft Azure

Start my 1-month free trial

Azure Service Bus overview

- When we want to implement the message key pattern, another Azure service is the Azure Service Bus. The Azure Service Bus is a fully managed messaging system, that by default is multitenant, highly available and also gives you an asynchronous platform when it comes to transfer data. So when we are sending messages, when we are receiving messages, all of these operations can be asynchronous. Also, it's FIFO by default. This means that it is FIFO guaranteed so our messages are going to follow the pattern of the first-in, first-out messaging. Also relating to the message format, this can be JSON, XML, or even a plain text message. Then, when it comes to the services that we have, so we first of all, we create what is called a Service Bus Namespace. This will have the endpoint and then I can create within that Namespace, Queues or Topics. Queues are just a standard queue system. So I have a queue, I can send messages to the queue then I can have a client that will grab messages, again…

Contents