Package org.springframework.amqp.core
Class Address
- java.lang.Object
-
- org.springframework.amqp.core.Address
-
public class Address extends Object
Represents an address for publication of an AMQP message. The AMQP 0-8 and 0-9 specifications have an unstructured string that is used as a "reply to" address. There are however conventions in use and this class makes it easier to follow these conventions, which can be easily summarised as:(exchange)/(routingKey)
Here we also the exchange name to default to empty (so just a routing key will work if you know the queue name).- Author:
- Mark Pollack, Mark Fisher, Dave Syer, Artem Bilan, Gary Russell
-
-
Field Summary
Fields Modifier and Type Field Description static String
AMQ_RABBITMQ_REPLY_TO
Use this value inRabbitTemplate#setReplyAddress(String)
to explicitly indicate that direct reply-to is to be used.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getExchangeName()
String
getRoutingKey()
int
hashCode()
String
toString()
-
-
-
Field Detail
-
AMQ_RABBITMQ_REPLY_TO
public static final String AMQ_RABBITMQ_REPLY_TO
Use this value inRabbitTemplate#setReplyAddress(String)
to explicitly indicate that direct reply-to is to be used.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Address
public Address(String address)
Create an Address instance from a structured String with the form(exchange)/(routingKey)
.- Parameters:
address
- a structured string.
-
-