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   
org.springframework.amqp.rabbit.transaction   
 

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 void ConnectionFactoryUtils.bindResourceToTransaction(RabbitResourceHolder resourceHolder, ConnectionFactory connectionFactory, boolean synched)
           
static RabbitResourceHolder ConnectionFactoryUtils.getTransactionalResourceHolder(ConnectionFactory cf, 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 connectionFactory)
          Determine whether the given RabbitMQ Channel is transactional, that is, bound to the current thread by Spring's transaction facilities.
static void ConnectionFactoryUtils.registerDeliveryTag(ConnectionFactory connectionFactory, com.rabbitmq.client.Channel channel, Long tag)
           
 

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.
 

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

Methods in org.springframework.amqp.rabbit.transaction that return ConnectionFactory
 ConnectionFactory RabbitTransactionManager.getConnectionFactory()
           
 

Methods in org.springframework.amqp.rabbit.transaction with parameters of type ConnectionFactory
 void RabbitTransactionManager.setConnectionFactory(ConnectionFactory connectionFactory)
           
 

Constructors in org.springframework.amqp.rabbit.transaction with parameters of type ConnectionFactory
RabbitTransactionManager(ConnectionFactory connectionFactory)
          Create a new RabbitTransactionManager, given a ConnectionFactory.
 


Spring AMQP

Copyright © 2010. All Rights Reserved.