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 AddressConnectionContext. getAddress()The address (hostname and port) used for connecting.static AddressAddress. 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 potentialAddresses 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 ConnectionConnectionFactory. newConnection(Address[] addrs)Create a new broker connection, picking the first available address from the list.ConnectionConnectionFactory. newConnection(Address[] addrs, String clientProvidedName)Create a new broker connection with a client-provided name, picking the first available address from the list.ConnectionConnectionFactory. newConnection(ExecutorService executor, Address[] addrs)Create a new broker connection, picking the first available address from the list.ConnectionConnectionFactory. 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 AddressResolverConnectionFactory. createAddressResolver(List<Address> addresses)ConnectionConnectionFactory. newConnection(ExecutorService executor, List<Address> addrs)Create a new broker connection, picking the first available address from the list.ConnectionConnectionFactory. 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.ConnectionConnectionFactory. newConnection(List<Address> addrs)Create a new broker connection, picking the first available address from the list.ConnectionConnectionFactory. 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 FrameHandlerFrameHandlerFactory. create(Address addr)FrameHandlerSocketFrameHandlerFactory. 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 FrameHandlerSocketChannelFrameHandlerFactory. 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)
-