I am trying to understand Azure service bus which I intend to use in a current project. I am completely new to this.
Here is the scenario. There are two microservices.
Microservice A - Writes order details to a database and also writes OrderId to an Azure service bus topic
Microservice B - Should be able to pick up the OrderId when ever this exists from the same topic and use it to process some other transactions. There can be multiple OrderId's generated in a day by users.
How do I setup Microservice B to perform this duty? How does this work in reality? How can this microservice constantly monitor the topic?