Spring AMQP

org.springframework.amqp.rabbit.support
Class CorrelationData

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

public class CorrelationData
extends Object

Base class for correlating publisher confirms to sent messages. Use the RabbitTemplate methods that include one of these as a parameter; when the publisher confirm is received, the CorrelationData is returned with the ack/nack.

Since:
1.0.1
Author:
Gary Russell

Constructor Summary
CorrelationData(String id)
           
 
Method Summary
 String getId()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CorrelationData

public CorrelationData(String id)
Method Detail

getId

public String getId()

toString

public String toString()
Overrides:
toString in class Object

Spring AMQP