Exploring Azure Service Bus
The orchestration of services is a tough task that needs to be performed with high speed and consistency to suit the requirements of modern applications. Azure Service Bus is a service that runs on Azure PaaS to meet enterprise messaging requirements. In this part of the chapter, you will become familiar with the features of Azure Service Bus and learn how to provision an instance for your solution. Then, you will learn how to leverage SDKs to get connected and submit and receive messages from topics and queues.
Before we cover the technical details of Azure Service Bus, let’s take a look at what kind of scenarios the enterprise messaging service should be used for:
- Message brokers: Just as with Azure Queue Storage, Azure Service Bus supports all simple messaging mechanisms to guarantee the delivery and sequence of messages with a FIFO approach. Because Azure Service Bus supports messages up to 100 MB in size, messages can be extended with...