Interface AckReplyConsumer

  • All Known Implementing Classes:
    AckReplyConsumerImpl

    public interface AckReplyConsumer
    Accepts a reply, sending it to the service.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void ack()
      Acknowledges that the message has been successfully processed.
      void nack()
      Signals that the message has not been successfully processed.
    • Method Detail

      • ack

        void ack()
        Acknowledges that the message has been successfully processed. The service will not send the message again.
      • nack

        void nack()
        Signals that the message has not been successfully processed. The service should resend the message.