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 classDefaultDnsCache.DefaultDnsCacheEntryprivate static classNoopDnsCache.NoopDnsCacheEntryMethods in io.netty.resolver.dns that return DnsCacheEntry Modifier and Type Method Description DnsCacheEntryDefaultDnsCache. cache(java.lang.String hostname, DnsRecord[] additionals, java.lang.Throwable cause, EventLoop loop)DnsCacheEntryDefaultDnsCache. cache(java.lang.String hostname, DnsRecord[] additionals, java.net.InetAddress address, long originalTtl, EventLoop loop)DnsCacheEntryDnsCache. cache(java.lang.String hostname, DnsRecord[] additionals, java.lang.Throwable cause, EventLoop loop)Cache the resolution failure for a given hostname.DnsCacheEntryDnsCache. cache(java.lang.String hostname, DnsRecord[] additionals, java.net.InetAddress address, long originalTtl, EventLoop loop)Create a newDnsCacheEntryand cache a resolved address for a given hostname.DnsCacheEntryNoopDnsCache. cache(java.lang.String hostname, DnsRecord[] additional, java.lang.Throwable cause, EventLoop loop)DnsCacheEntryNoopDnsCache. cache(java.lang.String hostname, DnsRecord[] additional, java.net.InetAddress address, long originalTtl, EventLoop loop)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)
-