See: Description
| Interface | Description |
|---|---|
| AmqpAdmin |
Specifies a basic set of portable AMQP administrative operations for AMQP > 0.8
|
| AmqpManagementOperations |
Interface specifying management operations.
|
| AmqpTemplate |
Specifies a basic set of AMQP operations.
|
| AnonymousQueue.NamingStrategy |
A strategy to name anonymous queues
|
| Declarable |
Classes implementing this interface can be auto-declared
with the broker during context initialization by an
AmqpAdmin. |
| Exchange | |
| MessageListener |
Listener interface to receive asynchronous delivery of Amqp Messages.
|
| MessagePostProcessor |
To be used with the send method of Amqp template classes (such as RabbitTemplate)
that convert an object to a message.
|
| ReceiveAndReplyCallback<R,S> |
To be used with the receive-and-reply methods of
AmqpTemplate
as processor for inbound object and producer for outbound object. |
| ReceiveAndReplyMessageCallback |
Message exchanging contract of ReceiveAndReplyCallback. |
| ReplyToAddressCallback<T> |
To be used with the receive-and-reply methods of
AmqpTemplate
to determine Address for Message
to send at runtime. |
| Class | Description |
|---|---|
| AbstractDeclarable |
Base class for
Declarable classes. |
| AbstractExchange |
Common properties that describe all exchange types.
|
| Address |
Represents an address for publication of an AMQP message.
|
| AddressUtils | Deprecated |
| AnonymousQueue |
Represents an anonymous, non-durable, exclusive, auto-delete queue.
|
| AnonymousQueue.Base64UrlNamingStrategy |
Generates names with the form
<prefix><base64url> where
'prefix' is 'spring.gen-' by default;
the 'base64url' String is generated from a UUID. |
| Binding |
Simple container collecting information to describe a binding.
|
| BindingBuilder |
Basic builder class to create bindings for a more fluent API style in code based configuration.
|
| BindingBuilder.DestinationConfigurer | |
| BindingBuilder.DirectExchangeRoutingKeyConfigurer | |
| BindingBuilder.GenericArgumentsConfigurer | |
| BindingBuilder.GenericExchangeRoutingKeyConfigurer | |
| BindingBuilder.HeadersExchangeMapConfigurer | |
| BindingBuilder.TopicExchangeRoutingKeyConfigurer | |
| CustomExchange |
Simple container collecting information to describe a custom exchange.
|
| DirectExchange |
Simple container collecting information to describe a direct exchange.
|
| ExchangeTypes |
Constants for the standard Exchange type names.
|
| FanoutExchange |
Simple container collecting information to describe a fanout exchange.
|
| HeadersExchange | |
| Message |
The 0-8 and 0-9-1 AMQP specifications do not define an Message class or interface.
|
| MessageBuilder |
Builds a Spring AMQP Message either from a byte[] body or
another Message using a fluent API.
|
| MessageBuilderSupport<T> |
Support class for building
Message and MessageProperties
fluent API. |
| MessageProperties |
Message Properties for an AMQP message.
|
| MessagePropertiesBuilder |
Builds a Spring AMQP MessageProperties object using a fluent API.
|
| Queue |
Simple container collecting information to describe a queue.
|
| TopicExchange |
Simple container collecting information to describe a topic exchange.
|
| UniquelyNamedQueue |
Create a queue with a unique name.
|
| Enum | Description |
|---|---|
| AcknowledgeMode | |
| Binding.DestinationType | |
| MessageDeliveryMode |
Enumeration for the message delivery mode.
|
| Exception | Description |
|---|---|
| AmqpMessageReturnedException |
Exception thrown in an RPC scenario if the request message cannot be delivered when
the mandatory flag is set.
|
| AmqpReplyTimeoutException |
Async reply timeout.
|