Package | Description |
---|---|
org.springframework.amqp.core |
Provides core classes for the spring AMQP abstraction.
|
org.springframework.amqp.rabbit.config |
Provides classes supporting the Rabbit XML namespace.
|
org.springframework.amqp.rabbit.core |
Provides core classes for Spring Rabbit.
|
org.springframework.amqp.rabbit.listener |
Provides classes for message listener containers.
|
Modifier and Type | Class and Description |
---|---|
class |
AnonymousQueue |
class |
UniquelyNamedQueue
Create a queue with a unique name.
|
Modifier and Type | Method and Description |
---|---|
Queue |
AmqpAdmin.declareQueue()
Declare a queue whose name is automatically named.
|
Modifier and Type | Method and Description |
---|---|
static BindingBuilder.DestinationConfigurer |
BindingBuilder.bind(Queue queue) |
String |
AmqpAdmin.declareQueue(Queue queue)
Declare the given queue
|
Modifier and Type | Method and Description |
---|---|
void |
BindingFactoryBean.setDestinationQueue(Queue destinationQueue) |
Modifier and Type | Method and Description |
---|---|
Queue |
RabbitAdmin.declareQueue()
Declares a server-named exclusive, autodelete, non-durable queue.
|
Modifier and Type | Method and Description |
---|---|
String |
RabbitAdmin.declareQueue(Queue queue)
Declare the given queue.
|
void |
RabbitTemplate.setReplyQueue(Queue replyQueue)
A queue for replies; if not provided, a temporary exclusive, auto-delete queue will
be used for each reply.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractMessageListenerContainer.addQueues(Queue... queues)
Add queue(s) to this container's list of queues.
|
void |
SimpleMessageListenerContainer.addQueues(Queue... queue)
Add queue(s) to this container's list of queues.
|
boolean |
AbstractMessageListenerContainer.removeQueues(Queue... queues)
Remove queue(s) from this container's list of queues.
|
boolean |
SimpleMessageListenerContainer.removeQueues(Queue... queue)
Remove queue(s) from this container's list of queues.
|
void |
AbstractMessageListenerContainer.setQueues(Queue... queues)
Set the name of the queue(s) to receive messages from.
|
void |
SimpleMessageListenerContainer.setQueues(Queue... queues) |
Copyright © 2018. All rights reserved.