summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp b/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
new file mode 100644
index 00000000000..aa80ab73163
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
@@ -0,0 +1,47 @@
+// $Id$
+
+#include "Timer_Queue.h"
+
+#if ! defined (__ACE_INLINE__)
+#include "Timer_Queue.inl"
+#endif /* __ACE_INLINE__ */
+
+ACE_RCSID(Notify, TAO_NS_Timer_Queue, "$id$")
+
+TAO_NS_Timer_Queue::TAO_NS_Timer_Queue (void)
+{
+}
+
+TAO_NS_Timer_Queue::~TAO_NS_Timer_Queue ()
+{
+}
+
+void
+TAO_NS_Timer_Queue::release (void)
+{
+ delete this;
+ //@@ inform factory
+}
+
+long
+TAO_NS_Timer_Queue::schedule_timer (ACE_Event_Handler *handler,
+ const ACE_Time_Value &delay_time,
+ const ACE_Time_Value &interval)
+{
+ return this->timer_queue_.schedule (handler,
+ 0,
+ timer_queue_.gettimeofday () + delay_time,
+ interval);
+}
+
+int
+TAO_NS_Timer_Queue::cancel_timer (long timer_id)
+{
+ return this->timer_queue_.cancel (timer_id);
+}
+
+ACE_Timer_Queue&
+TAO_NS_Timer_Queue::impl (void)
+{
+ return this->timer_queue_;
+}