namespace Tapeti { /// /// Determines the response sent back after handling a message. /// public enum ConsumeResponse { /// /// Acknowledge the message and remove it from the queue /// Ack, /// /// Negatively acknowledge the message and remove it from the queue, send to dead-letter queue if configured on the bus /// Nack, /// /// Negatively acknowledge the message and put it back in the queue to try again later /// Requeue } }