| 179 | } |
| 180 | |
| 181 | AsioEvent::AsioEvent(boost::asio::io_context& io, bool init) |
| 182 | : m_Timer(io) |
| 183 | { |
| 184 | m_Timer.expires_at(init ? boost::posix_time::neg_infin : boost::posix_time::pos_infin); |
| 185 | } |
| 186 | |
| 187 | void AsioEvent::Set() |
| 188 | { |
nothing calls this directly
no outgoing calls
no test coverage detected