I understand that GetMessages and PeekMessages have a limitation of 32 messages. That's the maximum amount they can retrieve.
I have a storage queue that has over 50 messages and I would like to retrieve, and process them all at once. Is it possible to do this?
I'm guessing that with GetMessages you can retrieve the first 32, and change the dequeue count, and then make another call and retrieve the next 32, and change the dequeue count, etc but I was wondering if there's a way how to get them in batches without affecting the dequeue count.
For example, say I wanted to update/delete the last message that was added (last out of say 65 messages) how can I go about and do this without affecting the other 64 messages?
Thanks in advance