diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-18 21:59:11 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-18 21:59:11 +0000 |
commit | 367187492835b4f709d17962af0dff632b1ce65f (patch) | |
tree | 5ae951cd59471c77378c51c13787592714426693 /ace/Timer_Wheel_T.h | |
parent | 90ba20ad4c88453745b74e03bf466e8357be7b80 (diff) | |
download | ATCD-367187492835b4f709d17962af0dff632b1ce65f.tar.gz |
Added pure virtual get_first() method to Timer_Queue_T. Added
implementations to Timer_Wheel and Timer_Hash. Timer_Heap and Timer_List
already had implementations.
Diffstat (limited to 'ace/Timer_Wheel_T.h')
-rw-r--r-- | ace/Timer_Wheel_T.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ace/Timer_Wheel_T.h b/ace/Timer_Wheel_T.h index 7d8bb1855bf..db2f1c20339 100644 --- a/ace/Timer_Wheel_T.h +++ b/ace/Timer_Wheel_T.h @@ -168,6 +168,9 @@ public: virtual void dump (void) const; // Dump the state of an object. + virtual ACE_Timer_Node_T<TYPE> *get_first (void); + // Reads the earliest node from the queue and returns it. + private: virtual void reschedule (ACE_Timer_Node_T<TYPE> *); // Reschedule an "interval" node |