mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
33 lines
822 B
C++
33 lines
822 B
C++
#pragma once
|
|
#include <memory>
|
|
#include <mutex>
|
|
|
|
#include <Poco/Util/Application.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class KeeperDispatcher;
|
|
|
|
class TinyContext: public std::enable_shared_from_this<TinyContext>
|
|
{
|
|
public:
|
|
std::shared_ptr<KeeperDispatcher> getKeeperDispatcher() const;
|
|
void initializeKeeperDispatcher(bool start_async) const;
|
|
void shutdownKeeperDispatcher() const;
|
|
void updateKeeperConfiguration(const Poco::Util::AbstractConfiguration & config);
|
|
|
|
using ConfigurationPtr = Poco::AutoPtr<Poco::Util::AbstractConfiguration>;
|
|
|
|
void setConfig(const ConfigurationPtr & config);
|
|
const Poco::Util::AbstractConfiguration & getConfigRef() const;
|
|
|
|
private:
|
|
mutable std::mutex keeper_dispatcher_mutex;
|
|
mutable std::shared_ptr<KeeperDispatcher> keeper_dispatcher;
|
|
|
|
ConfigurationPtr config;
|
|
};
|
|
|
|
}
|