Spring AMQP

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

Packages that use ConnectionFactory
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.transaction   
 

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

Classes in org.springframework.amqp.rabbit.connection that implement ConnectionFactory
 class AbstractConnectionFactory
           
 class CachingConnectionFactory
          A ConnectionFactory implementation that returns the same Connections from all CachingConnectionFactory.createConnection() calls, and ignores calls to Connection.close() and caches Channel.
 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 that return ConnectionFactory
 ConnectionFactory RabbitAccessor.getConnectionFactory()
          Return the ConnectionFactory that this accessor uses for obtaining RabbitMQ Connections.
 

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 connectionFactory, 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)
           
 void RabbitAccessor.setConnectionFactory(ConnectionFactory connectionFactory)
          Set the ConnectionFactory to use for obtaining RabbitMQ Connections.
 

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
BlockingQueueConsumer(ConnectionFactory connectionFactory, MessagePropertiesConverter messagePropertiesConverter, ActiveObjectCounter<BlockingQueueConsumer> activeObjectCounter, AcknowledgeMode acknowledgeMode, boolean transactional, int prefetchCount, String... queues)
          Create a consumer.
SimpleMessageListenerContainer(ConnectionFactory connectionFactory)
          Create a listener container from the connection factory (mandatory).
 

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 © 2011. All Rights Reserved.