Skip to content

Commit

Permalink
Доработки стабильности сетевого подключения
Browse files Browse the repository at this point in the history
  • Loading branch information
anyks committed May 14, 2024
1 parent f301402 commit 4f30810
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/ev/core/timer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ void awh::Timer::Timeout::operator()(ev::timer & timer, int revents) noexcept {
this->_broker->launched = !this->_broker->launched;
// Выполняем остановку таймера
timer.stop();
// Выполняем функцию события таймера
this->_broker->fn(this->_tid, this->_delay);
}
// Выполняем функцию события таймера
this->_broker->fn(this->_tid, this->_delay);
}
/**
* event Метод события таймера
Expand Down

0 comments on commit 4f30810

Please sign in to comment.