Spring AMQP

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

Packages that use Connection
org.springframework.amqp.rabbit.connection   
org.springframework.amqp.rabbit.listener   
org.springframework.amqp.rabbit.support   
 

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

Classes in org.springframework.amqp.rabbit.connection that implement Connection
 class SimpleConnection
           
 

Methods in org.springframework.amqp.rabbit.connection that return Connection
 Connection SingleConnectionFactory.createConnection()
           
 Connection ConnectionFactoryUtils.ResourceFactory.createConnection()
          Create a new RabbitMQ Connection for registration with a RabbitResourceHolder.
 Connection ConnectionFactory.createConnection()
           
protected  Connection SingleConnectionFactory.doCreateConnection()
          Create a Rabbit Connection via this class's ConnectionFactory.
 Connection RabbitResourceHolder.getConnection()
           
 Connection RabbitResourceHolder.getConnection(Class<? extends Connection> connectionType)
           
 Connection ConnectionFactoryUtils.ResourceFactory.getConnection(RabbitResourceHolder holder)
          Fetch an appropriate Connection from the given RabbitResourceHolder.
protected  Connection SingleConnectionFactory.getSharedConnectionProxy(Connection target)
          Wrap the given Connection with a proxy that delegates every method call to it but suppresses close calls.
 

Methods in org.springframework.amqp.rabbit.connection with parameters of type Connection
 void RabbitResourceHolder.addChannel(com.rabbitmq.client.Channel channel, Connection connection)
           
 void RabbitResourceHolder.addConnection(Connection connection)
           
protected  void SingleConnectionFactory.closeConnection(Connection connection)
          Close the given Connection.
 com.rabbitmq.client.Channel ConnectionFactoryUtils.ResourceFactory.createChannel(Connection con)
          Create a new RabbitMQ Session for registration with a RabbitResourceHolder.
protected  ChannelProxy CachingConnectionFactory.getCachedChannelProxy(Connection connection, LinkedList<ChannelProxy> channelList, boolean transactional)
           
protected  com.rabbitmq.client.Channel SingleConnectionFactory.getChannel(Connection connection, boolean transactional)
           
protected  com.rabbitmq.client.Channel CachingConnectionFactory.getChannel(Connection connection, boolean transactional)
           
protected  Connection SingleConnectionFactory.getSharedConnectionProxy(Connection target)
          Wrap the given Connection with a proxy that delegates every method call to it but suppresses close calls.
protected  void SingleConnectionFactory.prepareConnection(Connection con)
           
static void ConnectionFactoryUtils.releaseConnection(Connection con)
          Release the given Connection by closing it.
 

Method parameters in org.springframework.amqp.rabbit.connection with type arguments of type Connection
 Connection RabbitResourceHolder.getConnection(Class<? extends Connection> connectionType)
           
 

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

Methods in org.springframework.amqp.rabbit.listener that return Connection
protected  Connection AbstractRabbitListeningContainer.createSharedConnection()
          Create a shared Connection for this container.
protected  Connection AbstractRabbitListeningContainer.getSharedConnection()
          Return the shared Rabbit Connection maintained by this container.
 

Methods in org.springframework.amqp.rabbit.listener with parameters of type Connection
protected  void AbstractRabbitListeningContainer.prepareSharedConnection(Connection connection)
          Prepare the given Connection, which is about to be registered as shared Connection for this container.
 

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

Methods in org.springframework.amqp.rabbit.support that return Connection
protected  Connection RabbitAccessor.createConnection()
          Create a RabbitMQ Connection via this template's ConnectionFactory and its host and port values.
protected  Connection RabbitAccessor.getConnection(RabbitResourceHolder holder)
          Fetch an appropriate Connection from the given RabbitResourceHolder.
 

Methods in org.springframework.amqp.rabbit.support with parameters of type Connection
static void RabbitUtils.closeConnection(Connection connection)
          Close the given RabbitMQ Connection and ignore any thrown exception.
protected  com.rabbitmq.client.Channel RabbitAccessor.createChannel(Connection con)
          Create a RabbitMQ Channel for the given Connection.
 


Spring AMQP

Copyright © 2010. All Rights Reserved.