Azure Service Bus

2023-03-20T10:24:58+00:00

Azure Service Bus Cheat Sheet A fully managed message broker service. It allows you to decouple applications and services.  Provides a reliable and secure platform for asynchronous data and state transfer. Enables you to deliver messages to multiple subscribers and fan-out message delivery to downstream systems. Features Message Sessions for implementing first in, first out (FIFO) and request-response patterns to ensure the order of messages in the queue. Autoforwarding allows you to remove messages from a queue or subscription and transfer it to a different queue or topic (must be in the same namespace). A dead-letter queue holds the messages [...]