I want to know how i can achieve below behavior using Azure Service Bus Topics.
Sender sends different message (say A1, B1, C1, A2, B2, C2). Service1 should process messages of type A , Service 2 should process messages of type B and so on.
But if i have 2 instances of Service1, how can i ensure that a message of type A is received by only one of them. I need two instances of Service1 as this task is resource-intensive and huge requests are expected for this.