public interface

ConfirmListener

com.rabbitmq.client.ConfirmListener

Class Overview

Implement this interface in order to be notified of Confirm events. Acks represent messages handled succesfully; Nacks represent messages lost by the broker. Note, the lost messages could still have been delivered to consumers, but the broker cannot guarantee this.

Summary

Public Methods
abstract void handleAck(long deliveryTag, boolean multiple)
abstract void handleNack(long deliveryTag, boolean multiple)

Public Methods

public abstract void handleAck (long deliveryTag, boolean multiple)

Throws
IOException

public abstract void handleNack (long deliveryTag, boolean multiple)

Throws
IOException