Lately I've been working with the Azure Pack & Service Bus for Windows Server 1.1 where I'm doing message deferal with queues.
I was wondering if it is possible to abandon a deferred message in order to make it visible to others again? Currently I can retrieve my deferred message by using Receive(_seqNr)
but when I call the Abandon()
method it has no effect.
Is there some way to achieve this behavior?
Note that I can't use PeekLock only since the abandoning occures later in the application flow when required.
For those looking into the same scenario - As of this writing Abandoning deferred messages is not possible.