| 19 | namespace phxsqlproxy { |
| 20 | |
| 21 | WorkerThread::WorkerThread(PHXSqlProxyConfig * config, WorkerConfig_t * worker_config) : |
| 22 | config_(config), |
| 23 | worker_config_(worker_config), |
| 24 | connection_dispatcher_(NULL), |
| 25 | monitor_routine_(NULL), |
| 26 | io_routine_mgr_(NULL) { |
| 27 | } |
| 28 | |
| 29 | WorkerThread::~WorkerThread() { |
| 30 | delete connection_dispatcher_, connection_dispatcher_ = NULL; |
nothing calls this directly
no outgoing calls
no test coverage detected