mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
ea73b98fb9
- Rename generic file and identifier names in library-bridge to something more dictionary-specific. This is needed because later on, catboost will be integrated into library-bridge. - Also: Some smaller fixes like typos and un-inlining non-performance critical code. - The logic remains unchanged in this commit.
28 lines
589 B
C++
28 lines
589 B
C++
#pragma once
|
|
|
|
#include <Interpreters/Context.h>
|
|
#include <Server/HTTP/HTTPRequestHandlerFactory.h>
|
|
#include <Common/logger_useful.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class LibraryBridgeHandlerFactory : public HTTPRequestHandlerFactory, WithContext
|
|
{
|
|
public:
|
|
LibraryBridgeHandlerFactory(
|
|
const std::string & name_,
|
|
size_t keep_alive_timeout_,
|
|
ContextPtr context_);
|
|
|
|
std::unique_ptr<HTTPRequestHandler> createRequestHandler(const HTTPServerRequest & request) override;
|
|
|
|
private:
|
|
Poco::Logger * log;
|
|
const std::string name;
|
|
const size_t keep_alive_timeout;
|
|
};
|
|
|
|
}
|