Uses of Class
com.rabbitmq.client.Address
-
Packages that use Address Package Description com.rabbitmq.client The client API proper: classes and interfaces representing the AMQP connections, channels, and wire-protocol framing descriptors.com.rabbitmq.client.impl Implementations of interfaces specified in the client API, and their supporting classes.com.rabbitmq.client.impl.nio NIO network connector.com.rabbitmq.client.impl.recovery Implementation of connection and topology recovery. -
-
Uses of Address in com.rabbitmq.client
Methods in com.rabbitmq.client that return Address Modifier and Type Method Description Address
ConnectionContext. getAddress()
The address (hostname and port) used for connecting.static Address
Address. parseAddress(String addressString)
Factory method: takes a formatted addressString string as construction parameterstatic Address[]
Address. parseAddresses(String addresses)
Array-based factory method: takes an array of formatted address strings as construction parameterMethods in com.rabbitmq.client that return types with arguments of type Address Modifier and Type Method Description List<Address>
AddressResolver. getAddresses()
Get the potentialAddress
es to connect to.List<Address>
DnsRecordIpAddressResolver. getAddresses()
Get the IP addresses from a DNS queryList<Address>
DnsSrvRecordAddressResolver. getAddresses()
List<Address>
ListAddressResolver. getAddresses()
Methods in com.rabbitmq.client with parameters of type Address Modifier and Type Method Description Connection
ConnectionFactory. newConnection(Address[] addrs)
Create a new broker connection, picking the first available address from the list.Connection
ConnectionFactory. newConnection(Address[] addrs, String clientProvidedName)
Create a new broker connection with a client-provided name, picking the first available address from the list.Connection
ConnectionFactory. newConnection(ExecutorService executor, Address[] addrs)
Create a new broker connection, picking the first available address from the list.Connection
ConnectionFactory. newConnection(ExecutorService executor, Address[] addrs, String clientProvidedName)
Create a new broker connection with a client-provided name, picking the first available address from the list.Method parameters in com.rabbitmq.client with type arguments of type Address Modifier and Type Method Description protected AddressResolver
ConnectionFactory. createAddressResolver(List<Address> addresses)
Connection
ConnectionFactory. newConnection(ExecutorService executor, List<Address> addrs)
Create a new broker connection, picking the first available address from the list.Connection
ConnectionFactory. newConnection(ExecutorService executor, List<Address> addrs, String clientProvidedName)
Create a new broker connection with a client-provided name, picking the first available address from the list.Connection
ConnectionFactory. newConnection(List<Address> addrs)
Create a new broker connection, picking the first available address from the list.Connection
ConnectionFactory. newConnection(List<Address> addrs, String clientProvidedName)
Create a new broker connection with a client-provided name, picking the first available address from the list.Constructors in com.rabbitmq.client with parameters of type Address Constructor Description ConnectionContext(Socket socket, Address address, boolean ssl, SSLSession sslSession)
DnsRecordIpAddressResolver(Address address)
DnsRecordIpAddressResolver(Address address, boolean ssl)
Constructor parameters in com.rabbitmq.client with type arguments of type Address Constructor Description ListAddressResolver(List<Address> addresses)
-
Uses of Address in com.rabbitmq.client.impl
Methods in com.rabbitmq.client.impl with parameters of type Address Modifier and Type Method Description FrameHandler
FrameHandlerFactory. create(Address addr)
FrameHandler
SocketFrameHandlerFactory. create(Address addr)
-
Uses of Address in com.rabbitmq.client.impl.nio
Methods in com.rabbitmq.client.impl.nio with parameters of type Address Modifier and Type Method Description FrameHandler
SocketChannelFrameHandlerFactory. create(Address addr)
-
Uses of Address in com.rabbitmq.client.impl.recovery
Constructor parameters in com.rabbitmq.client.impl.recovery with type arguments of type Address Constructor Description AutorecoveringConnection(ConnectionParams params, FrameHandlerFactory f, List<Address> addrs)
RecoveryAwareAMQConnectionFactory(ConnectionParams params, FrameHandlerFactory factory, List<Address> addrs)
-