Resolver implements AutoCloseable

This commit is contained in:
Travis Burtrum 2019-04-11 00:09:42 -04:00
parent f52f1de8ad
commit f2705e4574
3 changed files with 11 additions and 6 deletions

View File

@ -50,11 +50,6 @@ public class CacheResolver implements Resolver, AutoCloseable {
return this;
}
@Override
public void close() {
}
private class CachedPacket {
final Packet response;
final long receivedSeconds, expiredSeconds;

View File

@ -23,4 +23,10 @@ public class DelegatingQueueProcessingResolver extends AbstractQueueProcessingRe
public Packet resolve(final Packet request) throws Exception {
return delegate.resolve(request);
}
@Override
public void close() {
super.close();
delegate.close();
}
}

View File

@ -13,7 +13,7 @@ import java.util.concurrent.Executor;
*
* Ideally, implementations provide optimized versions of both the in-line and async call.
*/
public interface Resolver {
public interface Resolver extends AutoCloseable {
/**
* This must return immediately and resolve the DNS query in the background, using the given executor
@ -45,6 +45,10 @@ public interface Resolver {
return resolveAsync(new BaseRequestResponse(request), Runnable::run).get().getResponse();
}
default void close() {
// do nothing by default
}
ServiceLoader<Services> services = ServiceLoader.load(Services.class);
static Resolver of(final ParsedUrl parsedUrl) {