Class RabbitAdmin

java.lang.Object
org.springframework.amqp.rabbit.core.RabbitAdmin
All Implemented Interfaces:
AmqpAdmin, Aware, BeanNameAware, InitializingBean, ApplicationContextAware, ApplicationEventPublisherAware

RabbitMQ implementation of portable AMQP administrative operations for AMQP >= 0.9.1.
Author:
Mark Pollack, Mark Fisher, Dave Syer, Ed Scriven, Gary Russell, Artem Bilan, Christian Tzolov
  • Field Details

  • Constructor Details

    • RabbitAdmin

      public RabbitAdmin(ConnectionFactory connectionFactory)
      Construct an instance using the provided ConnectionFactory.
      Parameters:
      connectionFactory - the connection factory - must not be null.
    • RabbitAdmin

      public RabbitAdmin(RabbitTemplate rabbitTemplate)
      Construct an instance using the provided RabbitTemplate. Use this constructor when, for example, you want the admin operations to be performed within the scope of the provided template's invoke() method.
      Parameters:
      rabbitTemplate - the template - must not be null and must have a connection factory.
      Since:
      2.0
  • Method Details

    • setAutoStartup

      public void setAutoStartup(boolean autoStartup)
    • setApplicationContext

      public void setApplicationContext(ApplicationContext applicationContext)
      Specified by:
      setApplicationContext in interface ApplicationContextAware
    • setApplicationEventPublisher

      public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher)
      Specified by:
      setApplicationEventPublisher in interface ApplicationEventPublisherAware
    • setIgnoreDeclarationExceptions

      public void setIgnoreDeclarationExceptions(boolean ignoreDeclarationExceptions)
    • getLastDeclarationExceptionEvent

      public DeclarationExceptionEvent getLastDeclarationExceptionEvent()
      Returns:
      the last DeclarationExceptionEvent that was detected in this admin.
      Since:
      1.6
    • setTaskExecutor

      public void setTaskExecutor(TaskExecutor taskExecutor)
      Set a task executor to use for async operations. Currently only used with purgeQueue(String, boolean).
      Parameters:
      taskExecutor - the executor to use.
      Since:
      2.1
    • getRabbitTemplate

      public RabbitTemplate getRabbitTemplate()
    • declareExchange

      public void declareExchange(Exchange exchange)
      Description copied from interface: AmqpAdmin
      Declare an exchange.
      Specified by:
      declareExchange in interface AmqpAdmin
      Parameters:
      exchange - the exchange to declare.
    • deleteExchange

      @ManagedOperation(description="Delete an exchange from the broker") public boolean deleteExchange(String exchangeName)
      Description copied from interface: AmqpAdmin
      Delete an exchange. Look at implementation specific subclass for implementation specific behavior, for example for RabbitMQ this will delete the exchange without regard for whether it is in use or not.
      Specified by:
      deleteExchange in interface AmqpAdmin
      Parameters:
      exchangeName - the name of the exchange
      Returns:
      true if the exchange existed and was deleted
    • declareQueue

      @ManagedOperation(description="Declare a queue on the broker (this operation is not available remotely)") @Nullable public String declareQueue(Queue queue)
      Declare the given queue. If the queue doesn't have a value for 'name' property, the queue name will be generated by Broker and returned from this method. The declaredName property of the queue will be updated to reflect this value.
      Specified by:
      declareQueue in interface AmqpAdmin
      Parameters:
      queue - the queue
      Returns:
      the queue name if successful, null if not successful and ignoreDeclarationExceptions is true.
    • declareQueue

      @ManagedOperation(description="Declare a queue with a broker-generated name (this operation is not available remotely)") @Nullable public Queue declareQueue()
      Declares a server-named exclusive, autodelete, non-durable queue.
      Specified by:
      declareQueue in interface AmqpAdmin
      Returns:
      the queue or null if an exception occurred and ignoreDeclarationExceptions is true.
    • deleteQueue

      @ManagedOperation(description="Delete a queue from the broker") public boolean deleteQueue(String queueName)
      Description copied from interface: AmqpAdmin
      Delete a queue, without regard for whether it is in use or has messages on it.
      Specified by:
      deleteQueue in interface AmqpAdmin
      Parameters:
      queueName - the name of the queue.
      Returns:
      true if the queue existed and was deleted.
    • deleteQueue

      @ManagedOperation(description="Delete a queue from the broker if unused and empty (when corresponding arguments are true") public void deleteQueue(String queueName, boolean unused, boolean empty)
      Description copied from interface: AmqpAdmin
      Delete a queue.
      Specified by:
      deleteQueue in interface AmqpAdmin
      Parameters:
      queueName - the name of the queue.
      unused - true if the queue should be deleted only if not in use.
      empty - true if the queue should be deleted only if empty.
    • purgeQueue

      @ManagedOperation(description="Purge a queue and optionally don\'t wait for the purge to occur") public void purgeQueue(String queueName, boolean noWait)
      Description copied from interface: AmqpAdmin
      Purges the contents of the given queue.
      Specified by:
      purgeQueue in interface AmqpAdmin
      Parameters:
      queueName - the name of the queue.
      noWait - true to not await completion of the purge.
    • purgeQueue

      @ManagedOperation(description="Purge a queue and return the number of messages purged") public int purgeQueue(String queueName)
      Description copied from interface: AmqpAdmin
      Purges the contents of the given queue.
      Specified by:
      purgeQueue in interface AmqpAdmin
      Parameters:
      queueName - the name of the queue.
      Returns:
      the number of messages purged.
    • declareBinding

      @ManagedOperation(description="Declare a binding on the broker (this operation is not available remotely)") public void declareBinding(Binding binding)
      Description copied from interface: AmqpAdmin
      Declare a binding of a queue to an exchange.
      Specified by:
      declareBinding in interface AmqpAdmin
      Parameters:
      binding - a description of the binding to declare.
    • removeBinding

      @ManagedOperation(description="Remove a binding from the broker (this operation is not available remotely)") public void removeBinding(Binding binding)
      Description copied from interface: AmqpAdmin
      Remove a binding of a queue to an exchange. Note unbindQueue/removeBinding was not introduced until 0.9 of the specification.
      Specified by:
      removeBinding in interface AmqpAdmin
      Parameters:
      binding - a description of the binding to remove.
    • getQueueProperties

      @ManagedOperation(description="Get queue name, message count and consumer count") public Properties getQueueProperties(String queueName)
      Returns 3 properties QUEUE_NAME, QUEUE_MESSAGE_COUNT, QUEUE_CONSUMER_COUNT, or null if the queue doesn't exist.
      Specified by:
      getQueueProperties in interface AmqpAdmin
      Parameters:
      queueName - the name of the queue.
      Returns:
      the properties or null if the queue doesn't exist.
    • getQueueInfo

      public QueueInformation getQueueInfo(String queueName)
      Description copied from interface: AmqpAdmin
      Returns information about the queue, if it exists.
      Specified by:
      getQueueInfo in interface AmqpAdmin
      Parameters:
      queueName - the name of the queue.
      Returns:
      the information or null if the queue doesn't exist.
    • setExplicitDeclarationsOnly

      public void setExplicitDeclarationsOnly(boolean explicitDeclarationsOnly)
      Set to true to only declare Declarable beans that are explicitly configured to be declared by this admin.
      Parameters:
      explicitDeclarationsOnly - true to ignore beans with no admin declaration configuration.
      Since:
      2.1.9
    • isRedeclareManualDeclarations

      public boolean isRedeclareManualDeclarations()
      Normally, when a connection is recovered, the admin only recovers auto-delete queues, etc, that are declared as beans in the application context. When this is true, it will also redeclare any manually declared Declarables via admin methods.
      Returns:
      true to redeclare.
      Since:
      2.4
    • setRedeclareManualDeclarations

      public void setRedeclareManualDeclarations(boolean redeclareManualDeclarations)
      Normally, when a connection is recovered, the admin only recovers auto-delete queues, etc., that are declared as beans in the application context. When this is true, it will also redeclare any manually declared Declarables via admin methods. When a queue or exchange is deleted, it will no longer be recovered, nor will any corresponding bindings.
      Parameters:
      redeclareManualDeclarations - true to redeclare.
      Since:
      2.4
      See Also:
    • setRetryTemplate

      public void setRetryTemplate(@Nullable org.springframework.retry.support.RetryTemplate retryTemplate)
      Set a retry template for auto declarations. There is a race condition with auto-delete, exclusive queues in that the queue might still exist for a short time, preventing the redeclaration. The default retry configuration will try 5 times with an exponential backOff starting at 1 second a multiplier of 2.0 and a max interval of 5 seconds. To disable retry, set the argument to null. Note that this retry is at the macro level - all declarations will be retried within the scope of this template. If you supplied a RabbitTemplate that is configured with a RetryTemplate, its template will retry each individual declaration.
      Parameters:
      retryTemplate - the retry template.
      Since:
      1.7.8
    • setBeanName

      public void setBeanName(String name)
      Specified by:
      setBeanName in interface BeanNameAware
    • getBeanName

      public String getBeanName()
    • isAutoStartup

      public boolean isAutoStartup()
    • afterPropertiesSet

      public void afterPropertiesSet()
      If autoStartup is set to true, registers a callback on the ConnectionFactory to declare all exchanges and queues in the enclosing application context. If the callback fails then it may cause other clients of the connection factory to fail, but since only exchanges, queues and bindings are declared failure is not expected.
      Specified by:
      afterPropertiesSet in interface InitializingBean
      See Also:
    • initialize

      public void initialize()
      Declares all the exchanges, queues and bindings in the enclosing application context, if any. It should be safe (but unnecessary) to call this method more than once.
      Specified by:
      initialize in interface AmqpAdmin
    • resetAllManualDeclarations

      public void resetAllManualDeclarations()
      Invoke this method to prevent the admin from recovering any declarations made by calls to declare*() methods.
      Since:
      2.4
      See Also:
    • getManualDeclarables

      @Deprecated public Map<String,Declarable> getManualDeclarables()
      Deprecated.
      Description copied from interface: AmqpAdmin
      Return the manually declared AMQP objects.
      Specified by:
      getManualDeclarables in interface AmqpAdmin
      Returns:
      the manually declared AMQP objects.
    • getManualDeclarableSet

      public Set<Declarable> getManualDeclarableSet()
      Description copied from interface: AmqpAdmin
      Return the manually declared AMQP objects.
      Specified by:
      getManualDeclarableSet in interface AmqpAdmin
      Returns:
      the manually declared AMQP objects.