MCPcopy Create free account
hub / github.com/COVESA/vsomeip / start_connect_timer

Method start_connect_timer

implementation/endpoints/src/client_endpoint_impl.cpp:722–728  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

720
721template<typename Protocol>
722void client_endpoint_impl<Protocol>::start_connect_timer() {
723
724 std::scoped_lock its_lock(connect_timer_mutex_);
725 connect_timer_.expires_after(std::chrono::milliseconds(connect_timeout_));
726 connect_timer_.async_wait(
727 std::bind(&client_endpoint_impl<Protocol>::wait_connect_cbk, this->shared_from_this(), std::placeholders::_1));
728}
729
730template<typename Protocol>
731void client_endpoint_impl<Protocol>::start_connecting_timer() {

Callers 1

restartMethod · 0.80

Calls 2

expires_afterMethod · 0.45
async_waitMethod · 0.45

Tested by

no test coverage detected