Schedule a timer event that will expire after an amount of time. The return value of this method, a timer_id value, uniquely identifies the in the ACE_Reactor's internal list of timers. This timer_id value can be used to cancel the timer with the cancel_timer() call. Reactor will call ACE_Event_Handler::add_reference() on the handler.
DA:2PA:87MOZ Rank:45
[ace-users] ACE_Reactor::schedule_timer() blocks on GNU/Linux
ACE_Reactor::schedule_timer() called from other thread blocks on GNU/Linux but not on Win32. DESCRIPTION: The main-thread runs the ACE_Reactor and handles incoming data on a socket in a ACE_Event_Handler::handle_input() method. If a other thread concurrently calls ACE_Reactor::instance()->schedule_timer()
Schedule a timer event. Schedule a timer event that will expire after an amount of time. The return value of this method, a timer_id value, uniquely identifies the in the ACE_Reactor's internal list of timers. This timer_id value can be used to cancel the timer with the cancel_timer () call.
DA:35PA:100MOZ Rank:31
3.4 The ACE Timer Queue Classes | C++ Network Programming ...
Lines 4 “8 Call ACE_Reactor::schedule_timer() (page 76) to schedule this event handler to be dispatched by the reactor periodically to check whether its client sent it a log record recently. We schedule the initial timer to expire in max_client_timeout_ seconds (which defaults to one hour) and also request that it then expire periodically every max_client_timeout_ / 4 seconds (i.e., check every 15 minutes).
2 Features of the ACE Reactor The ACEReactor provides an OO demultiplexing and ... virtual long schedule_timer (ACE_Event_Handler *, const void *act, const ACE_Time_Value &delta, const ACE_Time_Value &interval); // Cancel all timers associated with .
DA:29PA:49MOZ Rank:19
3.5 The ACE_Reactor Class | C++ Network Programming ...
The schedule_timer() method allows users to specify timers using relative time, which is generally easier to work with than the absolute times the ACE timer queues use. This method uses the timer queue's gettimeofday() mechanism to adjust user-specified times automatically to the time method used by the timer queue.
DA:71PA:18MOZ Rank:3
Re: [ace-users] ACE_Reactor : The behaviour of "ACE_TP ...