public interface DnsCnameCache
CNAME
s.限定符和类型 | 方法和说明 |
---|---|
void |
cache(java.lang.String hostname,
java.lang.String cname,
long originalTtl,
EventLoop loop)
Caches a cname entry that should be used for the given hostname.
|
void |
clear()
Clears all cached nameservers.
|
boolean |
clear(java.lang.String hostname)
Clears the cached nameservers for the specified hostname.
|
java.lang.String |
get(java.lang.String hostname)
Returns the cached cname for the given hostname.
|
java.lang.String get(java.lang.String hostname)
hostname
- the hostnamenull
if none.void cache(java.lang.String hostname, java.lang.String cname, long originalTtl, EventLoop loop)
hostname
- the hostnamecname
- the cname mapping.originalTtl
- the TTL as returned by the DNS serverloop
- the EventLoop
used to register the TTL timeoutvoid clear()
clear(String)
boolean clear(java.lang.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 method