azure-storage-queues Questions

1

How can I add a message to Azure queue storage that will show up in the queue exactly tomorrow (after 24 h) ?
Cryptonymous asked 29/10, 2013 at 12:40

2

Solved

I am using an Azure queue and have several different processes reading from the queue. My system is built in a way that assumes each message is read only once. This Microsoft article claims Azure q...
Downwind asked 28/11, 2012 at 9:12

1

Solved

The run method of my worker role is: public override void Run() { Message msg=null; while (true) { msg = queue.GetMessage(); if(msg!=null && msg.DequeueCount==1){ //delete message ...

1

Solved

Scenario: if I've spin off multiple Worker roles or ONE Worker role with multiple threads, which polls the new messages in Azure Queue. Could someone please confirm if the this the correct design...

© 2022 - 2024 — McMap. All rights reserved.