Java org.springframework.amqp.core Queue fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.amqp.core Queue fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.amqp.core Queue.

The text is from its open source code.

Field

booleandurable
booleanexclusive
booleanautoDelete
Maparguments

Constructor

Queue(String name)
The queue is durable, non-exclusive and non auto-delete.
Queue(String name, boolean durable)
Construct a new queue, given a name and durability flag.
Queue(String name, boolean durable, boolean exclusive, boolean autoDelete, Map arguments)
Construct a new queue, given a name, durability flag, and auto-delete flag, and arguments.
Queue(String name, boolean durable, boolean exclusive, boolean autoDelete)
Construct a new queue, given a name, durability, exclusive and auto-delete flags.

Method

java.util.MapgetArguments()
StringgetName()
Return the name provided in the constructor.
booleanisAutoDelete()
True if the server should delete the queue when it is no longer in use (the last consumer is cancelled).
booleanisDurable()
A durable queue will survive a server restart.
booleanisExclusive()
True if the server should only send messages to the declarer's connection.
voidsetIgnoreDeclarationExceptions(boolean ignoreDeclarationExceptions)
Set to true to ignore exceptions such as mismatched properties when declaring.