Package | Description |
---|---|
io.netty.bootstrap |
The helper classes with fluent API which enable an easy implementation of
typical client side and server side channel initialization.
|
io.netty.resolver |
Resolves an arbitrary string that represents the name of an endpoint into an address.
|
io.netty.resolver.dns |
An alternative to Java's built-in domain name lookup mechanism that resolves a domain name asynchronously,
which supports the queries of an arbitrary DNS record type as well.
|
Modifier and Type | Method and Description |
---|---|
AddressResolverGroup<?> |
BootstrapConfig.resolver()
Returns the configured
AddressResolverGroup or the default if non is configured yet. |
Modifier and Type | Method and Description |
---|---|
Bootstrap |
Bootstrap.resolver(AddressResolverGroup<?> resolver)
Sets the
NameResolver which will resolve the address of the unresolved named address. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultAddressResolverGroup
|
class |
NoopAddressResolverGroup
|
Modifier and Type | Class and Description |
---|---|
class |
DnsAddressResolverGroup
|
class |
RoundRobinDnsAddressResolverGroup
A
AddressResolverGroup of DnsNameResolver s that supports random selection of destination addresses if
multiple are provided by the nameserver. |
Copyright © 2008–2017 The Netty Project. All rights reserved.