In contrast with Azure Service Bus Queues that allow us to deliver one-to-one, Azure Service Bus Topics allow us to deliver messages one-to-many. This means that we can deliver the same message to multiple clients that are called subscribers. This messaging system is basically an ESB system (Enterprise Service Bus), allowing to have a “publish/subscribe” communication.
I have multiple clients and i have created topic for each client. Whenever server send message to client, it just put message into client topic. Is it possible if i create single topic and multiple subscriber so that every client just listen only its message?