abandon abstract method

  1. @override
Future abandon(
  1. MessageEnvelope message
)
override

Returnes message into the queue and makes it available for all subscribers to receive it again. This method is usually used to return a message which could not be processed at the moment to repeat the attempt. Messages that cause unrecoverable errors shall be removed permanently or/and send to dead letter queue.

  • message a message to return. Return (optional) Future that receives an null for success. Throows error

Implementation

@override
Future abandon(MessageEnvelope message);