public final class NoopAuthoritativeDnsServerCache extends Object implements AuthoritativeDnsServerCache
AuthoritativeDnsServerCache
that actually never caches anything.Modifier and Type | Field and Description |
---|---|
static NoopAuthoritativeDnsServerCache |
INSTANCE |
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.
|
public static final NoopAuthoritativeDnsServerCache INSTANCE
public DnsServerAddressStream get(String hostname)
AuthoritativeDnsServerCache
DnsServerAddressStream
may contain unresolved InetSocketAddress
es that will be resolved
when needed while resolving other domain names.get
in interface AuthoritativeDnsServerCache
hostname
- the hostnamenull
if none.public void cache(String hostname, InetSocketAddress address, long originalTtl, EventLoop loop)
AuthoritativeDnsServerCache
cache
in interface AuthoritativeDnsServerCache
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 timeoutpublic void clear()
AuthoritativeDnsServerCache
clear
in interface AuthoritativeDnsServerCache
AuthoritativeDnsServerCache.clear(String)
public boolean clear(String hostname)
AuthoritativeDnsServerCache
clear
in interface AuthoritativeDnsServerCache
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.