ClickHouse/dbms/Interpreters/DNSCacheUpdater.h
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

31 lines
542 B
C++

#include <Core/BackgroundSchedulePool.h>
#include <Common/Stopwatch.h>
namespace DB
{
class Context;
/// Add a task to BackgroundProcessingPool that resolves all hosts and updates cache with constant period.
class DNSCacheUpdater
{
public:
explicit DNSCacheUpdater(Context & context, Int32 update_period_seconds_);
~DNSCacheUpdater();
void start();
private:
void run();
Context & context;
Int32 update_period_seconds;
BackgroundSchedulePool & pool;
BackgroundSchedulePoolTaskHolder task_handle;
};
}