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
 

Subinterfaces of Connection in org.springframework.amqp.rabbit.connection
 interface ConnectionProxy
          Subinterface of Connection to be implemented by Connection proxies.
 

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

Methods in org.springframework.amqp.rabbit.connection that return Connection
 Connection ConnectionFactory.createConnection()
           
 Connection ConnectionFactoryUtils.ResourceFactory.createConnection()
          Create a new RabbitMQ Connection for registration with a RabbitResourceHolder.
 Connection SingleConnectionFactory.createConnection()
           
protected  Connection CachingConnectionFactory.doCreateConnection()
           
protected  Connection SingleConnectionFactory.doCreateConnection()
          Create a Connection.
 Connection RabbitResourceHolder.getConnection()
           
 Connection RabbitResourceHolder.getConnection(Class<? extends Connection> connectionType)
           
 Connection ConnectionFactoryUtils.ResourceFactory.getConnection(RabbitResourceHolder holder)
          Fetch an appropriate Connection from the given RabbitResourceHolder.
 Connection ConnectionProxy.getTargetConnection()
          Return the target Channel of this proxy.
 

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)
           
 com.rabbitmq.client.Channel ConnectionFactoryUtils.ResourceFactory.createChannel(Connection con)
          Create a new RabbitMQ Session for registration with a RabbitResourceHolder.
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 AbstractMessageListenerContainer.createSharedConnection()
          Create a shared Connection for this container.
protected  Connection AbstractMessageListenerContainer.getSharedConnection()
          Return the shared Rabbit Connection maintained by this container.
 

Methods in org.springframework.amqp.rabbit.listener with parameters of type Connection
protected  void AbstractMessageListenerContainer.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.
 


Spring AMQP

Copyright © 2011. All Rights Reserved.