The lock held on the message by the receiver is let go, making the message available again in Service Bus for another receive operation.
The properties of the message to modify while abandoning the message.
Promise
Removes the message from Service Bus.
Promise
Moves the message to the deadletter sub-queue. To receive a deadletted message, create a new QueueClient/SubscriptionClient using the path for the deadletter sub-queue.
The DeadLetter options that can be provided while rejecting the message.
Promise
Defers the processing of the message. Save the sequenceNumber
of the message, in order to
receive it message again in the future using the receiveDeferredMessage
method.
The properties of the message to modify while deferring the message
Promise
Renews the lock on the message for the duration as specified during the Queue/Subscription creation.
lockedUntilUtc
property on the message for the time when the lock expires.complete()
, defer()
or deadletter()
,
before its lock expires, then the message lands back in the Queue/Subscription for the next
receive operation.Promise
Generated using TypeDoc
A message that can be settled by completing it, abandoning it, deferring it, or sending it to the dead letter queue.