感谢您回复 Sam Miller,但我需要在 Windows 上实现它。
看看这个例子 o 写道:
boost::mutex mut;
boost::condition_variable cond;
boost::asio::io_service io_service;
boost::asio::deadline_timer t(io_service);
void test_func()
{
boost::mutex::scoped_lock lk(mut);
cond.notify_all();
}
void cancel_test_func()
{
boost::unique_lock< boost::mutex > lk(mut);
auto canceled_timers = t.cancel();
cond.wait(lk);
printf("Canceled...%u.", canceled_timers);
}
int main(int argc, char* argv[])
{
try
{
t.expires_from_now(boost::posix_time::seconds(5));
t.async_wait(boost::bind(&test_func));
io_service.post(boost::bind(cancel_test_func));
boost::thread_group tg;
tg.create_thread( boost::bind(&boost::asio::io_service::run, &io_service) );
//tg.create_thread( boost::bind(&boost::asio::io_service::run, &io_service) );
getchar();
}
catch (std::exception& e)
{
std::cerr << "Exception: " << e.what() << "\n";
}
return 0;
}
为了使这个例子有效(取消计时器),我需要取消注释第二个线程创建。只有一个线程,我从来没有收到通知。问题是:这种行为正常吗?