diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-06-04 07:22:45 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-06-04 07:22:45 +0000 |
commit | 276cf0a2706f2332a4fe62e4ac5bbe5adb9d42f4 (patch) | |
tree | 74ddcf91392474bb205b61787bbedd17bd6d057b /ace/Timer_Queue.h | |
parent | 6d4dadd271fe4713417f0ed4aa6c7e426ddebad4 (diff) | |
download | ATCD-276cf0a2706f2332a4fe62e4ac5bbe5adb9d42f4.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Timer_Queue.h')
-rw-r--r-- | ace/Timer_Queue.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/ace/Timer_Queue.h b/ace/Timer_Queue.h index a0de5dbd5dc..2dfdec388b4 100644 --- a/ace/Timer_Queue.h +++ b/ace/Timer_Queue.h @@ -19,38 +19,6 @@ #include "ace/Synch.h" #include "ace/Timer_Queue_T.h" -template <class LOCK> -class ACE_Event_Handler_Handle_Timeout_Upcall - // = TITLE - // Functor for Timer_Queues. - // - // = DESCRIPTION - // This class implements the functor required by the Timer - // Queue to call <handle_timeout> on ACE_Event_Handlers. -{ -public: - typedef ACE_Timer_Queue_T<ACE_Event_Handler *, - ACE_Event_Handler_Handle_Timeout_Upcall<LOCK>, - LOCK> - TIMER_QUEUE; - - int timeout (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler, - const void *arg, - const ACE_Time_Value &cur_time); - // This method is called when the timer expires - - int cancellation (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler); - // This method is called when the timer is canceled - - int deletion (TIMER_QUEUE &timer_queue, - ACE_Event_Handler *handler, - const void *arg); - // This method is called when the timer queue is destroyed and - // the timer is still contained in it -}; - // The following typedef are here for ease of use and backward // compatibility. |