MCPcopy Create free account
hub / github.com/chronoxor/CppServer / SendError

Method SendError

source/server/asio/timer.cpp:232–239  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230}
231
232void Timer::SendError(std::error_code ec)
233{
234 // Skip Asio abort error
235 if (ec == asio::error::operation_aborted)
236 return;
237
238 onError(ec.value(), ec.category().name(), ec.message());
239}
240
241void Timer::SendTimer(bool canceled)
242{

Callers

nothing calls this directly

Calls 1

valueMethod · 0.80

Tested by

no test coverage detected