SWC-DB  v0.5.12 C++ documentations
SWC-DB© (Super Wide Column Database) - High Performance Scalable Database (https://github.com/kashirin-alex/swc-db)
ClientContextManager.h
Go to the documentation of this file.
1 /*
2  * SWC-DB© Copyright since 2019 Alex Kashirin <kashirin.alex@gmail.com>
3  * License details at <https://github.com/kashirin-alex/swc-db/#license>
4  */
5 
6 #ifndef swcdb_manager_ClientContextManager_h
7 #define swcdb_manager_ClientContextManager_h
8 
9 namespace SWC { namespace client {
10 
11 
13 namespace Mngr {
14 
15 
16 class ContextManager final : public client::ContextManager {
17  public:
18 
19  ContextManager() : client::ContextManager(*Env::Config::settings()) { }
20 
21  virtual ~ContextManager() noexcept { }
22 
23  void handle_disconnect(Comm::ConnHandlerPtr) noexcept override;
24 
25 };
26 
27 }}}
28 
29 #endif // swcdb_manager_ClientContextManager_h
SWC::client::Mngr::ContextManager::ContextManager
ContextManager()
Definition: ClientContextManager.h:19
SWC::client::Mngr::ContextManager::~ContextManager
virtual ~ContextManager() noexcept
Definition: ClientContextManager.h:21
SWC
The SWC-DB C++ namespace 'SWC'.
Definition: main.cc:12
SWC::client::Mngr::ContextManager::handle_disconnect
void handle_disconnect(Comm::ConnHandlerPtr) noexcept override
Definition: ClientContextManager.cc:10
SWC::client::ContextManager
Definition: ContextManager.h:15
SWC::Comm::ConnHandlerPtr
std::shared_ptr< ConnHandler > ConnHandlerPtr
Definition: AppContext.h:17
SWC::client::Mngr::ContextManager
Definition: ClientContextManager.h:16