| 69 | } |
| 70 | |
| 71 | void RoutingSession::Init(PointCheckCallback const & pointCheckCallback) |
| 72 | { |
| 73 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
| 74 | CHECK(!m_router, ()); |
| 75 | m_router = std::make_unique<AsyncRouter>(pointCheckCallback); |
| 76 | } |
| 77 | |
| 78 | void RoutingSession::BuildRoute(Checkpoints const & checkpoints, uint32_t timeoutSec) |
| 79 | { |
no outgoing calls
no test coverage detected