| 126 | // ------------------------------------------------------------------------------------------------- |
| 127 | |
| 128 | AsyncRouter::AsyncRouter(PointCheckCallback const & pointCheckCallback) |
| 129 | : m_threadExit(false) |
| 130 | , m_hasRequest(false) |
| 131 | , m_clearState(false) |
| 132 | , m_pointCheckCallback(pointCheckCallback) |
| 133 | { |
| 134 | m_thread = threads::SimpleThread(&AsyncRouter::ThreadFunc, this); |
| 135 | } |
| 136 | |
| 137 | AsyncRouter::~AsyncRouter() |
| 138 | { |
nothing calls this directly
no test coverage detected