Uses of Interface
io.netty.resolver.dns.DnsCacheEntry
-
Packages that use DnsCacheEntry 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. -
-
Uses of DnsCacheEntry in io.netty.resolver.dns
Classes in io.netty.resolver.dns that implement DnsCacheEntry Modifier and Type Class Description private static class
DefaultDnsCache.DefaultDnsCacheEntry
private static class
NoopDnsCache.NoopDnsCacheEntry
Fields in io.netty.resolver.dns with type parameters of type DnsCacheEntry Modifier and Type Field Description private java.util.List<? extends DnsCacheEntry>
DefaultDnsCache.DnsCacheEntryList. entries
Methods in io.netty.resolver.dns that return DnsCacheEntry Modifier and Type Method Description DnsCacheEntry
DefaultDnsCache. cache(java.lang.String hostname, DnsRecord[] additionals, java.lang.Throwable cause, EventLoop loop)
DnsCacheEntry
DefaultDnsCache. cache(java.lang.String hostname, DnsRecord[] additionals, java.net.InetAddress address, long originalTtl, EventLoop loop)
DnsCacheEntry
DnsCache. cache(java.lang.String hostname, DnsRecord[] additionals, java.lang.Throwable cause, EventLoop loop)
Cache the resolution failure for a given hostname.DnsCacheEntry
DnsCache. cache(java.lang.String hostname, DnsRecord[] additionals, java.net.InetAddress address, long originalTtl, EventLoop loop)
Create a newDnsCacheEntry
and cache a resolved address for a given hostname.DnsCacheEntry
NoopDnsCache. cache(java.lang.String hostname, DnsRecord[] additional, java.lang.Throwable cause, EventLoop loop)
DnsCacheEntry
NoopDnsCache. cache(java.lang.String hostname, DnsRecord[] additional, java.net.InetAddress address, long originalTtl, EventLoop loop)
(package private) DnsCacheEntry
DefaultDnsCache.DefaultDnsCacheEntry. copyIfNeeded()
DnsCacheEntry
DefaultDnsCache.DnsCacheEntryList. get(int index)
Methods in io.netty.resolver.dns that return types with arguments of type DnsCacheEntry Modifier and Type Method Description java.util.List<? extends DnsCacheEntry>
DefaultDnsCache. get(java.lang.String hostname, DnsRecord[] additionals)
java.util.List<? extends DnsCacheEntry>
DnsCache. get(java.lang.String hostname, DnsRecord[] additionals)
Return the cached entries for the given hostname.java.util.List<? extends DnsCacheEntry>
NoopDnsCache. get(java.lang.String hostname, DnsRecord[] additionals)
Method parameters in io.netty.resolver.dns with type arguments of type DnsCacheEntry Modifier and Type Method Description private static boolean
DnsNameResolver. hasEntries(java.util.List<? extends DnsCacheEntry> cachedEntries)
Constructor parameters in io.netty.resolver.dns with type arguments of type DnsCacheEntry Constructor Description DnsCacheEntryList(java.util.List<? extends DnsCacheEntry> entries)
-