I am working on developing an application that uses Azure Service Bus Queues for distributing messages among the consumers. All my consumers are listening on a single queue. Here are few things that I want to clarify. Azure documentation on my concerns provide far less information
- If a single queue is used for all my consumers, will the deliveries happen in round robbin fashion like in RabbitMQ
- Is there an Azure service bus equivalent to RabbitMQ basicQos
- How to handle manual acks from consumers. The Azure documentation uses a callback-based approach which is not what I need in my case.
Thanks in advance