Class RabbitAdmin

    • Constructor Detail

      • 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 Detail

      • setAutoStartup

        public void setAutoStartup​(boolean autoStartup)
      • setIgnoreDeclarationExceptions

        public void setIgnoreDeclarationExceptions​(boolean ignoreDeclarationExceptions)
      • 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
      • 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.
      • 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.
      • 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
      • 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
      • getBeanName

        public String getBeanName()
      • isAutoStartup

        public boolean isAutoStartup()
      • 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:
        setRedeclareManualDeclarations(boolean)