/* * Copyright (c) 2015 Spotify AB * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.spotify.dns; import java.io.IOException; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ScheduledFuture; import java.util.concurrent.TimeUnit; import static com.spotify.dns.ChangeNotifierFactory.RunnableChangeNotifier; import static java.util.Objects.requireNonNull; class PollingDnsSrvWatcher implements DnsSrvWatcher { private final ChangeNotifierFactory changeNotifierFactory; private final ScheduledExecutorService executor; private final long pollingInterval; private final TimeUnit pollingIntervalUnit; PollingDnsSrvWatcher(ChangeNotifierFactory changeNotifierFactory, ScheduledExecutorService executor, long pollingInterval, TimeUnit pollingIntervalUnit) { this.changeNotifierFactory = requireNonNull(changeNotifierFactory, "changeNotifierFactory"); this.executor = requireNonNull(executor, "executor"); this.pollingInterval = pollingInterval; this.pollingIntervalUnit = requireNonNull(pollingIntervalUnit, "pollingIntervalUnit"); } @Override public ChangeNotifier watch(String fqdn) { final RunnableChangeNotifier changeNotifier = changeNotifierFactory.create(fqdn); final ScheduledFuture updaterFuture = executor.scheduleWithFixedDelay(changeNotifier, 0, pollingInterval, pollingIntervalUnit); return changeNotifier; } @Override public void close() throws IOException { executor.shutdownNow(); } }