# Functions
Abandon stops processing the message and releases the lock on it.
Complete will notify Azure Service Bus that the message was successfully handled and should be deleted from the queue.
DeadLetter will notify Azure Service Bus that the message will be sent to the deadletter queue.
Error is a wrapper around Abandon() that allows to trace the error before abandoning the message.
IsDone returns true and terminates processing if the handler is doneHandlerInstance.
No description provided by the author
New creates a message, validating type first.
RetryLater waits for the given duration before abandoning the lock.
# Interfaces
Handler is the interface to handle messages.
# Type aliases
HandleFunc is a func to handle the message received from a subscription.