I am learning how to communicate between Azure cloud apps and client apps, and worked through this tutorial.
I currently have a single instance of a .exe worker process which sends messages via the service bus. I also have a client role which I run on my local machine to read the messages. However, when I run multiple instances of the client, each client picks up some of the messages and none of them is getting a full readout. Is it possible to use a queue or the service bus so that every instance of the client can see all of the messages generated by the worker?
For example, 3 people on 3 different computers might want to independently monitor the status of the same compute task.