Queue Polling In Azure
In a previous tutorial we showed how to create and receive a message from queue , we can now adding polling
The MessageQueue class in StorageClient contains the polling inbuilt infrastructure and delivers the message via eventing:
mqObj.MessageReceived += new MessageReceivedEventHandler(mqObj_MessageReceived);
mqObj.PollInterval = 1000; // poll interval in milliseconds
mqObj.StartReceiving(); // starts polling
The event handler fires whenever a [...]
Read more



20. Feb, 2010