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
Subclasses of Address in com.rabbitmq.client Modifier and Type Class Description class
ResolvedInetAddress
Fields in com.rabbitmq.client declared as Address Modifier and Type Field Description private Address
DnsRecordIpAddressResolver. address
Fields in com.rabbitmq.client with type parameters of type Address Modifier and Type Field Description private java.util.List<Address>
ListAddressResolver. addresses
Methods in com.rabbitmq.client that return Address Modifier and Type Method Description static Address
Address. parseAddress(java.lang.String addressString)
Factory method: takes a formatted addressString string as construction parameterstatic Address[]
Address. parseAddresses(java.lang.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 java.util.List<Address>
AddressResolver. getAddresses()
Get the potentialAddress
es to connect to.java.util.List<Address>
DnsRecordIpAddressResolver. getAddresses()
Get the IP addresses from a DNS queryjava.util.List<Address>
DnsSrvRecordAddressResolver. getAddresses()
java.util.List<Address>
ListAddressResolver. getAddresses()
default java.util.List<Address>
AddressResolver. maybeShuffle(java.util.List<Address> input)
Optionally shuffle the list of addresses returned byAddressResolver.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, java.lang.String clientProvidedName)
Create a new broker connection with a client-provided name, picking the first available address from the list.Connection
ConnectionFactory. newConnection(java.util.concurrent.ExecutorService executor, Address[] addrs)
Create a new broker connection, picking the first available address from the list.Connection
ConnectionFactory. newConnection(java.util.concurrent.ExecutorService executor, Address[] addrs, java.lang.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(java.util.List<Address> addresses)
default java.util.List<Address>
AddressResolver. maybeShuffle(java.util.List<Address> input)
Optionally shuffle the list of addresses returned byAddressResolver.getAddresses()
.Connection
ConnectionFactory. newConnection(java.util.concurrent.ExecutorService executor, java.util.List<Address> addrs)
Create a new broker connection, picking the first available address from the list.Connection
ConnectionFactory. newConnection(java.util.concurrent.ExecutorService executor, java.util.List<Address> addrs, java.lang.String clientProvidedName)
Create a new broker connection with a client-provided name, picking the first available address from the list.Connection
ConnectionFactory. newConnection(java.util.List<Address> addrs)
Create a new broker connection, picking the first available address from the list.Connection
ConnectionFactory. newConnection(java.util.List<Address> addrs, java.lang.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 DnsRecordIpAddressResolver(Address address)
DnsRecordIpAddressResolver(Address address, boolean ssl)
Constructor parameters in com.rabbitmq.client with type arguments of type Address Constructor Description ListAddressResolver(java.util.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, java.lang.String connectionName)
FrameHandler
SocketFrameHandlerFactory. create(Address addr, java.lang.String connectionName)
-
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, java.lang.String connectionName)
-
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, java.util.List<Address> addrs)
RecoveryAwareAMQConnectionFactory(ConnectionParams params, FrameHandlerFactory factory, java.util.List<Address> addrs)
-