Reading Azure Service Bus Queue
I'm simply trying to work out how best to retrieve messages as quickly as possible from an Azure Service Bus Queue. I was shocked that there wasn't some way to properly subscribe to the queue for notifications and that I'm going to have to poll. (unless I'm wrong in which case the documentation is terrible). I got long polling working, but checking a single message every 60 seconds looks like it'll cost around £900 per month (again, unless I've misunderstood that). And if I add a redundant/second service to poll it'll double. So I'm wondering what the best/most cost efficient way of doing it