| 34 | routing_client_state_machine::routing_client_state_machine(error_handler _handler) : error_handler_(std::move(_handler)) { } |
| 35 | |
| 36 | routing_client_state_e routing_client_state_machine::state() const { |
| 37 | std::scoped_lock lock{mtx_}; |
| 38 | return state_; |
| 39 | } |
| 40 | |
| 41 | void routing_client_state_machine::target_shutdown() { |
| 42 | std::scoped_lock lock{mtx_}; |
no outgoing calls
no test coverage detected