ClickHouse/programs/library-bridge/LibraryBridge.h

27 lines
489 B
C++
Raw Normal View History

2021-03-05 09:38:00 +00:00
#pragma once
#include <Interpreters/Context.h>
2022-04-27 15:05:45 +00:00
#include <Bridge/IBridge.h>
2021-03-07 13:55:40 +00:00
#include "HandlerFactory.h"
2021-03-05 09:38:00 +00:00
namespace DB
{
2021-03-07 13:55:40 +00:00
class LibraryBridge : public IBridge
2021-03-05 09:38:00 +00:00
{
protected:
std::string bridgeName() const override
2021-03-07 13:55:40 +00:00
{
return "LibraryBridge";
}
HandlerFactoryPtr getHandlerFactoryPtr(ContextPtr context) const override
2021-03-07 13:55:40 +00:00
{
return std::make_shared<LibraryBridgeHandlerFactory>("LibraryRequestHandlerFactory-factory", keep_alive_timeout, context);
}
2021-03-05 09:38:00 +00:00
};
}