diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-27 23:17:54 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-27 23:17:54 +0000 |
commit | a40a30300eb46da68665a1ee2e1d1c15da3afbe7 (patch) | |
tree | 65febd528f2c8b469929a3715979e1cf119b2d2f /ace/Proactor.h | |
parent | 210c027983332424261f907324bb50ddf6ab1b19 (diff) | |
download | ATCD-a40a30300eb46da68665a1ee2e1d1c15da3afbe7.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Proactor.h')
-rw-r--r-- | ace/Proactor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ace/Proactor.h b/ace/Proactor.h index a7a545fda60..65500b07fa1 100644 --- a/ace/Proactor.h +++ b/ace/Proactor.h @@ -23,6 +23,7 @@ #include "ace/Timer_Queue.h" #include "ace/Timer_List.h" #include "ace/Timer_Heap.h" +#include "ace/Timer_Wheel.h" #if defined (ACE_WIN32) // This only works on Win32 platforms @@ -102,6 +103,9 @@ public: typedef ACE_Timer_Heap_T<ACE_Handler *, ACE_Proactor_Handle_Timeout_Upcall> Timer_Heap; typedef ACE_Timer_Heap_Iterator_T<ACE_Handler *, ACE_Proactor_Handle_Timeout_Upcall> Timer_Heap_Iterator; + typedef ACE_Timer_Wheel_T<ACE_Handler *, ACE_Proactor_Handle_Timeout_Upcall> Timer_Wheel; + typedef ACE_Timer_Wheel_Iterator_T<ACE_Handler *, ACE_Proactor_Handle_Timeout_Upcall> Timer_Wheel_Iterator; + ACE_Proactor (size_t number_of_threads = 0, Timer_Queue *tq = 0); // A do nothing constructor. |