Interface AckReplyConsumer

All Known Implementing Classes:
AckReplyConsumerImpl

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

    Modifier and Type
    Method
    Description
    void
    ack()
    Acknowledges that the message has been successfully processed.
    void
    Signals that the message has not been successfully processed.
  • Method Details

    • 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.