Spring AMQP

Uses of Interface
org.springframework.amqp.rabbit.connection.ConnectionFactory

Packages that use ConnectionFactory
org.springframework.amqp.rabbit.admin   
org.springframework.amqp.rabbit.connection   
org.springframework.amqp.rabbit.core   
org.springframework.amqp.rabbit.core.support   
org.springframework.amqp.rabbit.listener   
org.springframework.amqp.rabbit.support   
 

Uses of ConnectionFactory in org.springframework.amqp.rabbit.admin
 

Constructors in org.springframework.amqp.rabbit.admin with parameters of type ConnectionFactory
RabbitBrokerAdmin(ConnectionFactory connectionFactory)
           
 

Uses of ConnectionFactory in org.springframework.amqp.rabbit.connection
 

Classes in org.springframework.amqp.rabbit.connection that implement ConnectionFactory
 class CachingConnectionFactory
          NOTE: this ConnectionFactory implementation is considered experimental at this stage.
 class SingleConnectionFactory
          A ConnectionFactory implementation that returns the same Connections from all SingleConnectionFactory.createConnection() calls, and ignores calls to Connection.close().
 

Methods in org.springframework.amqp.rabbit.connection with parameters of type ConnectionFactory
static com.rabbitmq.client.Channel ConnectionFactoryUtils.doGetTransactionalChannel(ConnectionFactory connectionFactory, ConnectionFactoryUtils.ResourceFactory resourceFactory)
          Obtain a RabbitMQ Channel that is synchronized with the current transaction, if any.
static com.rabbitmq.client.Channel ConnectionFactoryUtils.getTransactionalChannel(ConnectionFactory cf, com.rabbitmq.client.Connection existingCon, boolean synchedLocalTransactionAllowed)
          Obtain a RabbitMQ Channel that is synchronized with the current transaction, if any.
static boolean ConnectionFactoryUtils.isChannelTransactional(com.rabbitmq.client.Channel channel, ConnectionFactory cf)
          Determine whether the given RabbitMQ Channel is transactional, that is, bound to the current thread by Spring's transaction facilities.
static void ConnectionFactoryUtils.releaseConnection(com.rabbitmq.client.Connection con, ConnectionFactory cf)
          Release the given Connection by closing it.
 

Constructors in org.springframework.amqp.rabbit.connection with parameters of type ConnectionFactory
RabbitResourceHolder(ConnectionFactory connectionFactory)
          Create a new RabbitResourceHolder that is open for resources to be added.
RabbitResourceHolder(ConnectionFactory connectionFactory, com.rabbitmq.client.Connection connection, com.rabbitmq.client.Channel channel)
          Create a new RabbitResourceHolder for the given Rabbit resources.
 

Uses of ConnectionFactory in org.springframework.amqp.rabbit.core
 

Constructors in org.springframework.amqp.rabbit.core with parameters of type ConnectionFactory
RabbitAdmin(ConnectionFactory connectionFactory)
           
RabbitTemplate(ConnectionFactory connectionFactory)
           
 

Uses of ConnectionFactory in org.springframework.amqp.rabbit.core.support
 

Methods in org.springframework.amqp.rabbit.core.support that return ConnectionFactory
 ConnectionFactory RabbitGatewaySupport.getConnectionFactory()
          Return the Rabbit ConnectionFactory used by the gateway.
 

Methods in org.springframework.amqp.rabbit.core.support with parameters of type ConnectionFactory
protected  RabbitTemplate RabbitGatewaySupport.createRabbitTemplate(ConnectionFactory connectionFactory)
          Create a RabbitTemplate for the given ConnectionFactory.
 void RabbitGatewaySupport.setConnectionFactory(ConnectionFactory connectionFactory)
          Set the Rabbit connection factory to be used by the gateway.
 

Uses of ConnectionFactory in org.springframework.amqp.rabbit.listener
 

Constructors in org.springframework.amqp.rabbit.listener with parameters of type ConnectionFactory
SimpleMessageListenerContainer(ConnectionFactory connectionFactory)
           
 

Uses of ConnectionFactory in org.springframework.amqp.rabbit.support
 

Methods in org.springframework.amqp.rabbit.support that return ConnectionFactory
 ConnectionFactory RabbitAccessor.getConnectionFactory()
          Return the ConnectionFactory that this accessor uses for obtaining RabbitMQ Connections.
 

Methods in org.springframework.amqp.rabbit.support with parameters of type ConnectionFactory
 void RabbitAccessor.setConnectionFactory(ConnectionFactory connectionFactory)
          Set the ConnectionFactory to use for obtaining RabbitMQ Connections.
 


Spring AMQP

Copyright © 2010. All Rights Reserved.