Java org.springframework.amqp.rabbit.connection CachingConnectionFactory fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.amqp.rabbit.connection CachingConnectionFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.amqp.rabbit.connection CachingConnectionFactory.

The text is from its open source code.

Subclass

org.springframework.amqp.rabbit.connection.CachingConnectionFactory has subclasses.
Click this link to see all its subclasses.

Constructor

CachingConnectionFactory(@Nullable String hostname)
Create a new CachingConnectionFactory given a host name.
CachingConnectionFactory(int port)
Create a new CachingConnectionFactory given a port on the hostname returned from InetAddress.getLocalHost(), or "localhost" if getLocalHost() throws an exception.
CachingConnectionFactory(URI uri)
Create a new CachingConnectionFactory given a URI .
CachingConnectionFactory(com.rabbitmq.client.ConnectionFactory rabbitConnectionFactory)
Create a new CachingConnectionFactory for the given target ConnectionFactory.
CachingConnectionFactory()
Create a new CachingConnectionFactory initializing the hostname to be the value returned from InetAddress.getLocalHost(), or "localhost" if getLocalHost() throws an exception.
CachingConnectionFactory(@Nullable String hostNameArg, int port)
Create a new CachingConnectionFactory given a host name and port.
CachingConnectionFactory(com.rabbitmq.client.ConnectionFactory rabbitConnectionFactory, boolean isPublisherFactory)
Create a new CachingConnectionFactory for the given target ConnectionFactory.

Method