summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp
diff options
context:
space:
mode:
authorpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-06 21:41:59 +0000
committerpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-06 21:41:59 +0000
commit816b9e2f354c665660f68af62de586b4fbce88fb (patch)
tree81718fd25f82ab70bf2b1fe6f14b52a7f7df9b56 /TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp
parent0fb1f9698feed36fd4ea9e4f0321cac881b6d2a2 (diff)
downloadATCD-816b9e2f354c665660f68af62de586b4fbce88fb.tar.gz
ChangeLogTag: Sun Jul 06 17:40:19 2003 Pradeep Gore <pradeep@oomworks.com>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp b/TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp
index a655b8745da..6f51070662e 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Reactive_Task.cpp
@@ -6,47 +6,47 @@
#include "Reactive_Task.inl"
#endif /* __ACE_INLINE__ */
-ACE_RCSID(Notify, TAO_NS_Reactive_Task, "$Id$")
+ACE_RCSID(Notify, TAO_Notify_Reactive_Task, "$Id$")
#include "Timer_Reactor.h"
-TAO_NS_Reactive_Task::TAO_NS_Reactive_Task (void)
+TAO_Notify_Reactive_Task::TAO_Notify_Reactive_Task (void)
:timer_ (0)
{
}
-TAO_NS_Reactive_Task::~TAO_NS_Reactive_Task ()
+TAO_Notify_Reactive_Task::~TAO_Notify_Reactive_Task ()
{
}
void
-TAO_NS_Reactive_Task::init (TAO_NS_AdminProperties_var& /*admin_properties*/ ACE_ENV_ARG_DECL)
+TAO_Notify_Reactive_Task::init (TAO_Notify_AdminProperties_var& /*admin_properties*/ ACE_ENV_ARG_DECL)
{
ACE_NEW_THROW_EX (this->timer_,
- TAO_NS_Timer_Reactor (),
+ TAO_Notify_Timer_Reactor (),
CORBA::NO_MEMORY ());
}
void
-TAO_NS_Reactive_Task::release (void)
+TAO_Notify_Reactive_Task::release (void)
{
this->timer_->_decr_refcnt ();
delete this; //TODO: Release via factory.
}
void
-TAO_NS_Reactive_Task::shutdown (void)
+TAO_Notify_Reactive_Task::shutdown (void)
{
}
void
-TAO_NS_Reactive_Task::execute (TAO_NS_Method_Request_No_Copy& method_request ACE_ENV_ARG_DECL)
+TAO_Notify_Reactive_Task::execute (TAO_Notify_Method_Request_No_Copy& method_request ACE_ENV_ARG_DECL)
{
method_request.execute (ACE_ENV_SINGLE_ARG_PARAMETER);
}
-TAO_NS_Timer*
-TAO_NS_Reactive_Task::timer (void)
+TAO_Notify_Timer*
+TAO_Notify_Reactive_Task::timer (void)
{
this->timer_->_incr_refcnt ();
return this->timer_;