MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / start

Method start

base/poco/Net/src/TCPServerConnection.cpp:36–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34
35
36void TCPServerConnection::start()
37{
38 try
39 {
40 run();
41 }
42 catch (Exception& exc)
43 {
44 ErrorHandler::handle(exc);
45 }
46 catch (std::exception& exc)
47 {
48 ErrorHandler::handle(exc);
49 }
50 catch (...)
51 {
52 ErrorHandler::handle();
53 }
54}
55
56
57} } // namespace Poco::Net

Callers

nothing calls this directly

Calls 2

handleFunction · 0.85
runFunction · 0.50

Tested by

no test coverage detected