非常に単純ですが、完全に機能する例:
#include <iostream>
#include <boost/asio.hpp>
boost::asio::io_service io_service;
boost::posix_time::seconds interval(1); // 1 second
boost::asio::deadline_timer timer(io_service, interval);
void tick(const boost::system::error_code& /*e*/) {
std::cout << "tick" << std::endl;
// Reschedule the timer for 1 second in the future:
timer.expires_at(timer.expires_at() + interval);
// Posts the timer event
timer.async_wait(tick);
}
int main(void) {
// Schedule the timer for the first time:
timer.async_wait(tick);
// Enter IO loop. The timer will fire for the first time 1 second from now:
io_service.run();
return 0;
}
expires_at()
を呼び出すことが非常に重要であることに注意してください 新しい有効期限を設定します。そうしないと、現在の期限がすでに切れているため、タイマーがすぐに起動します。
Boosts Asio チュートリアルの 2 番目の例で説明しています。
ここで見つけることができます。
その後、3 番目の例をチェックして、定期的な時間間隔で再度呼び出す方法を確認してください。