Package com.rabbitmq.client.amqp
Interface Management
- All Superinterfaces:
AutoCloseable
API to manage AMQ 0.9.1 model topology (exchanges, queues, and bindings).
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
Specification of a binding.static interface
Specification of a classic queue.static enum
Classic queue version.static interface
Deprecated, for removal: This API element is subject to removal in a future version.static interface
Specification of an exchange.static enum
Exchange type.static enum
Overflow strategy (when a queue reaches its maximum length limit).static interface
static interface
Deprecated, for removal: This API element is subject to removal in a future version.usequeueDelete(String)
insteadstatic interface
Queue information.static enum
Queue leader locator.static interface
Specification to create a queue.static enum
Queue Type.static enum
Dead letter strategy for quorum queues.static interface
Specification of a quorum queue.static interface
Specification of a stream.static interface
Unbind specification. -
Method Summary
Modifier and TypeMethodDescriptionbinding()
Start binding specification.void
close()
Close the management instance and release its resources.exchange()
Start exchange specification.Start exchange specification.void
exchangeDelete
(String name) Delete an exchange.Deprecated, for removal: This API element is subject to removal in a future version.useexchangeDelete(String)
insteadqueue()
Start queue specification.Start queue specification.void
queueDelete
(String name) Delete a queue.Deprecated, for removal: This API element is subject to removal in a future version.usequeueDelete(String)
insteadQuery information on a queue.queuePurge
(String queue) Purge (delete all messages) from a queue.unbind()
Start unbinding specification.
-
Method Details
-
queue
Management.QueueSpecification queue()Start queue specification.- Returns:
- the queue specification
-
queue
Start queue specification.- Parameters:
name
- the name of the queue- Returns:
- the queue specification
-
queueInfo
Query information on a queue.- Parameters:
name
- the name of the queue- Returns:
- the queue information
-
queueDeletion
Deprecated, for removal: This API element is subject to removal in a future version.usequeueDelete(String)
insteadDelete a queue.- Returns:
- the queue deletion
-
queueDelete
Delete a queue.- Parameters:
name
- the name of the queue
-
queuePurge
Purge (delete all messages) from a queue.- Parameters:
queue
- queue to delete messages from- Returns:
- the status of the purge operation
-
exchange
Management.ExchangeSpecification exchange()Start exchange specification.- Returns:
- the exchange specification
-
exchange
Start exchange specification.- Parameters:
name
- the name of the exchange- Returns:
- the exchange specification
-
exchangeDeletion
Deprecated, for removal: This API element is subject to removal in a future version.useexchangeDelete(String)
insteadDelete an exchange.- Returns:
- the exchange deletion
-
exchangeDelete
Delete an exchange.- Parameters:
name
- the name of the exchange
-
binding
Management.BindingSpecification binding()Start binding specification.- Returns:
- the binding definition
-
unbind
Management.UnbindSpecification unbind()Start unbinding specification.- Returns:
- the unbinding specification
-
close
void close()Close the management instance and release its resources.- Specified by:
close
in interfaceAutoCloseable
-
exchangeDelete(String)
instead