Uses of Interface
io.netty5.resolver.dns.DnsCacheEntry
-
Packages that use DnsCacheEntry Package Description io.netty5.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.netty5.resolver.dns
Methods in io.netty5.resolver.dns that return DnsCacheEntry Modifier and Type Method Description DnsCacheEntry
DefaultDnsCache. cache(String hostname, DnsRecord[] additionals, Throwable cause, EventLoop loop)
DnsCacheEntry
DefaultDnsCache. cache(String hostname, DnsRecord[] additionals, InetAddress address, long originalTtl, EventLoop loop)
DnsCacheEntry
DnsCache. cache(String hostname, DnsRecord[] additionals, Throwable cause, EventLoop loop)
Cache the resolution failure for a given hostname.DnsCacheEntry
DnsCache. cache(String hostname, DnsRecord[] additionals, InetAddress address, long originalTtl, EventLoop loop)
Create a newDnsCacheEntry
and cache a resolved address for a given hostname.DnsCacheEntry
NoopDnsCache. cache(String hostname, DnsRecord[] additional, Throwable cause, EventLoop loop)
DnsCacheEntry
NoopDnsCache. cache(String hostname, DnsRecord[] additional, InetAddress address, long originalTtl, EventLoop loop)
Methods in io.netty5.resolver.dns that return types with arguments of type DnsCacheEntry Modifier and Type Method Description List<? extends DnsCacheEntry>
DefaultDnsCache. get(String hostname, DnsRecord[] additionals)
List<? extends DnsCacheEntry>
DnsCache. get(String hostname, DnsRecord[] additionals)
Return the cached entries for the given hostname.List<? extends DnsCacheEntry>
NoopDnsCache. get(String hostname, DnsRecord[] additionals)
-