summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/orbsvcs/Notify/Timer_Queue.cpp
blob: 642f313f2f3b1a667dc6464efd06caa752c2347c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// $Id$

#include "orbsvcs/Notify/Timer_Queue.h"

ACE_RCSID (Notify, TAO_Notify_Timer_Queue, "$Id$")

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

TAO_Notify_Timer_Queue::TAO_Notify_Timer_Queue (void)
{
}

TAO_Notify_Timer_Queue::~TAO_Notify_Timer_Queue ()
{
}

void
TAO_Notify_Timer_Queue::release (void)
{
  delete this;
  //@@ inform factory
}

long
TAO_Notify_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_Notify_Timer_Queue::cancel_timer (long timer_id)
{
  return this->timer_queue_.cancel (timer_id);
}

ACE_Timer_Queue&
TAO_Notify_Timer_Queue::impl (void)
{
  return this->timer_queue_;
}

TAO_END_VERSIONED_NAMESPACE_DECL