public interface AuthoritativeDnsServerCache
Modifier and Type | Method and Description |
---|---|
void |
cache(String hostname,
InetSocketAddress address,
long originalTtl,
EventLoop loop)
Caches a nameserver that should be used to resolve the given hostname.
|
void |
clear()
Clears all cached nameservers.
|
boolean |
clear(String hostname)
Clears the cached nameservers for the specified hostname.
|
DnsServerAddressStream |
get(String hostname)
Returns the cached nameservers that should be used to resolve the given hostname.
|
DnsServerAddressStream get(String hostname)
DnsServerAddressStream
may contain unresolved InetSocketAddress
es that will be resolved
when needed while resolving other domain names.hostname
- the hostnamenull
if none.void cache(String hostname, InetSocketAddress address, long originalTtl, EventLoop loop)
hostname
- the hostnameaddress
- the nameserver address (which may be unresolved).originalTtl
- the TTL as returned by the DNS serverloop
- the EventLoop
used to register the TTL timeoutvoid clear()
clear(String)
boolean clear(String hostname)
true
if and only if there was an entry for the specified host name in the cache and
it has been removed by this methodCopyright © 2008–2024 The Netty Project. All rights reserved.