
6 Nov
2008
6 Nov
'08
8:08 p.m.
No, I use deadline_timer with timeout values of few milliseconds and it works very well. Probably some other work that you execute on the same io_service/thread blocks the timer handler?
I found an alternative solution using an asynchronous timer. However, it do works only if
m_ReceptionWatchDogTimer.expires_from_now(boost::posix_time::milliseconds(timeout));
with timeout >= 1000
is there a restriction for wait time less than one second ?