With any normal Azure Queue, I exit the message and then do some work. I did not want to delete the message until the work was completed.
How long does this message remain hidden until it is considered a failure and is again visible in the queue?
eg.
var message = myQueue.GetMessage(); // Do Work .. myQueue.DeleteMessage();
My work may take 30 seconds or something else. or what happens if required .. 1 min or 2?
Basically, I don't want the message to appear again before the work is completed if another worker jumped out of the queue. Although this worker is still working.
Is it possible to set the "hide" time?
source share