実行中のタイマーを呼び出すexpires_from_now()
と、タイマーはキャンセルされ、新しいタイマーが呼び出されます。したがって、関連するハンドラが呼び出されます。ハンドラーで、キャンセルされたタイマーと期限切れのタイマーを簡単に区別できます。それでも、期限切れのタイマーと再トリガーされたタイマーを区別する方法があるかどうか疑問に思っています。どちらの場合も、ハンドラーは error_code で呼び出されますoperation_aborted
。または多分私はいくつかの詳細を見逃しています。
以下のコードは、次の出力を生成します。
20120415 21:32:28079507 Main: Timer1 set to 15 s.
20120415 21:32:28079798 Main: Timer1 set to 12 s.
20120415 21:32:28079916 Handler1: Timer 1 was cancelled or retriggered.
20120415 21:32:40079860 Handler1: expired.
これは、ハンドラーがキャンセルされたハンドラーのアクションを実装できないことを示唆しています。これは、タイマーを再トリガーすると同じハンドラーが呼び出され、同じアクションが実行されるためです。これはおそらく意図した動作ではありません。
#include <boost/asio.hpp>
#include <boost/thread.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/posix_time/posix_time_io.hpp>
#include <iostream>
using namespace boost::posix_time;
using namespace std;
void handler1(const boost::system::error_code &ec)
{
if (ec == boost::asio::error::operation_aborted)
{
cout << microsec_clock::local_time() << " Handler1: Timer was cancelled or retriggered." << endl;
}
else
{
cout << microsec_clock::local_time() << " Handler1: Timer expired." << endl;
}
}
boost::asio::io_service io_service1;
void run1()
{
io_service1.run();
}
int main()
{
time_facet *facet = new time_facet("%Y%m%d %H:%M:%S%f");
cout.imbue(locale(cout.getloc(), facet));
boost::asio::deadline_timer timer1(io_service1, seconds(15));
timer1.async_wait(handler1);
cout << microsec_clock::local_time() << " Main: Timer1 set to 15 s." << endl;
// now actually run the timer
boost::thread thread1(run1);
timer1.expires_from_now(seconds(12));
cout << microsec_clock::local_time() << " Main: Timer1 set to 12 s." << endl;
// here the timer is running, but we need to reset the deadline
timer1.async_wait(handler1);
thread1.join(); // wait for thread1 to terminate
}