Spring AMQP

org.springframework.amqp.rabbit.support
Class PendingConfirm

java.lang.Object
  extended by org.springframework.amqp.rabbit.support.PendingConfirm

public class PendingConfirm
extends Object

Instances of this object track pending publisher confirms. The timestamp allows the pending confirmation to be expired. It also holds CorrelationData for the client to correlate a confirm with a sent message.

Since:
1.0.1
Author:
Gary Russell

Constructor Summary
PendingConfirm(CorrelationData correlationData, long timestamp)
           
 
Method Summary
 CorrelationData getCorrelationData()
           
 long getTimestamp()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PendingConfirm

public PendingConfirm(CorrelationData correlationData,
                      long timestamp)
Parameters:
correlationData -
timestamp -
Method Detail

getCorrelationData

public CorrelationData getCorrelationData()

getTimestamp

public long getTimestamp()

toString

public String toString()
Overrides:
toString in class Object

Spring AMQP