在下面的官方提升链接中: http://www.boost.org/doc/libs/1_35_0/doc/html/boost_asio/reference/deadline_timer.html。
您可以看到我们可以在到期前更新异步deadline_timer。没关系,代码有效: 当计时器更新时,旧的async_wait被取消了,这很好但是令人讨厌的是当它被取消时,它仍称为处理程序:
void handler(const boost::system::error_code& error)
{
if (!error)
{
// Timer expired.
}
}
...
// Construct a timer with an absolute expiry time.
boost::asio::deadline_timer timer(io_service,
boost::posix_time::time_from_string("2005-12-07 23:59:59.000"));
// Start an asynchronous wait.
timer.async_wait(handler);
更改有效截止日期的到期时间
在存在挂起的异步等待时更改定时器的到期时间会导致取消这些等待操作。要确保与计时器关联的操作仅执行一次,请使用以下内容:used:
void on_some_event()
{
if (my_timer.expires_from_now(seconds(5)) > 0)
{
// We managed to cancel the timer. Start new asynchronous wait.
my_timer.async_wait(on_timeout);
}
else
{
// Too late, timer has already expired!
}
}
void on_timeout(const boost::system::error_code& e)
{
if (e != boost::asio::error::operation_aborted)
{
// Timer was not cancelled, take necessary action.
}
}
我想知道有没有办法更新&取消旧计时器而不让旧计时器调用处理程序,在这种情况下是on_timeout()函数?
答案 0 :(得分:3)
我的愚蠢问题,刚刚发现可以通过在执行实际操作之前添加一行检查(看看它是否为中止/取消事件)来修复:
void handler1(const boost::system::error_code &e)
{
if (e != boost::asio::error::operation_aborted) // here is the important part
{
//do actual stuff here if it's not a cancel/abort event
}
}