Package | Description |
---|---|
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.
|
io.netty.util.collection |
Modifier and Type | Field and Description |
---|---|
(package private) java.util.Map<java.net.InetSocketAddress,IntObjectMap<DnsQueryContext>> |
DnsQueryContextManager.map
A map whose key is the DNS server address and value is the map of the DNS query ID and its corresponding
DnsQueryContext . |
Modifier and Type | Method and Description |
---|---|
private IntObjectMap<DnsQueryContext> |
DnsQueryContextManager.getContextMap(java.net.InetSocketAddress nameServerAddr) |
private IntObjectMap<DnsQueryContext> |
DnsQueryContextManager.getOrCreateContextMap(java.net.InetSocketAddress nameServerAddr) |
Modifier and Type | Class and Description |
---|---|
private static class |
IntCollections.EmptyMap
An empty map.
|
private static class |
IntCollections.UnmodifiableMap<V>
An unmodifiable wrapper around a
IntObjectMap . |
class |
IntObjectHashMap<V>
A hash map implementation of
IntObjectMap that uses open addressing for keys. |
Modifier and Type | Field and Description |
---|---|
private static IntObjectMap<java.lang.Object> |
IntCollections.EMPTY_MAP |
private IntObjectMap<V> |
IntCollections.UnmodifiableMap.map |
Modifier and Type | Method and Description |
---|---|
static <V> IntObjectMap<V> |
IntCollections.emptyMap()
Returns an unmodifiable empty
IntObjectMap . |
static <V> IntObjectMap<V> |
IntCollections.unmodifiableMap(IntObjectMap<V> map)
Creates an unmodifiable wrapper around the given map.
|
Modifier and Type | Method and Description |
---|---|
static <V> IntObjectMap<V> |
IntCollections.unmodifiableMap(IntObjectMap<V> map)
Creates an unmodifiable wrapper around the given map.
|
Constructor and Description |
---|
UnmodifiableMap(IntObjectMap<V> map) |