I'd like to understand how much of the following scenario is supported by the Azure Service Bus:
Worker server notifies an unknown number of webservers of an event Each web server processes the message (processing takes sometime - 10-30 minutes) When every web server is done with processing of the first message, all of the web servers need to receive a new event. Basically I'm trying to synchronize a number of web roles after performing a long-running job on each web role.
How much of this can I get "for free" from Azure service bus?