I'm creating messages in an Azure Storage Queue, using the visibilityTimeout option. They appear nicely in the queue when the timeout passed. Great!
Now imagine a message was created using the wrong visibilityTimeout value (e.g. too far ahead in the future). Is it possible to retrieve that message from the queue, so it can be updated and/or deleted?
FYI, I'm creating the message using the following snippet:
queueSvc.createMessage('js-queue-items', queueMessageBuffer, { "visibilityTimeout": 10}, function (e, r) { ... });
Unfortunately no. The message will remain invisible to all callers. It will become visible only after
visibilityTimeout
has elapsed.