summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.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/Any/ProxyPushConsumer.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/Any/ProxyPushConsumer.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp b/TAO/orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp
index f2d774756b8..8e3ce3f7923 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp
@@ -6,7 +6,7 @@
#include "ProxyPushConsumer.inl"
#endif /* __ACE_INLINE__ */
-ACE_RCSID(Notify, TAO_NS_ProxyPushConsumer, "$id$")
+ACE_RCSID(Notify, TAO_Notify_ProxyPushConsumer, "$id$")
#include "tao/debug.h"
#include "../AdminProperties.h"
@@ -15,16 +15,16 @@ ACE_RCSID(Notify, TAO_NS_ProxyPushConsumer, "$id$")
#include "AnyEvent.h"
#include "PushSupplier.h"
-TAO_NS_ProxyPushConsumer::TAO_NS_ProxyPushConsumer (void)
+TAO_Notify_ProxyPushConsumer::TAO_Notify_ProxyPushConsumer (void)
{
}
-TAO_NS_ProxyPushConsumer::~TAO_NS_ProxyPushConsumer ()
+TAO_Notify_ProxyPushConsumer::~TAO_Notify_ProxyPushConsumer ()
{
}
void
-TAO_NS_ProxyPushConsumer::release (void)
+TAO_Notify_ProxyPushConsumer::release (void)
{
if (this->supplier_)
this->supplier_->release ();
@@ -34,10 +34,10 @@ TAO_NS_ProxyPushConsumer::release (void)
}
void
-TAO_NS_ProxyPushConsumer::destroy (ACE_ENV_SINGLE_ARG_DECL)
+TAO_Notify_ProxyPushConsumer::destroy (ACE_ENV_SINGLE_ARG_DECL)
{
if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG, "In TAO_NS_ProxyPushConsumer::destroy \n"));
+ ACE_DEBUG ((LM_DEBUG, "In TAO_Notify_ProxyPushConsumer::destroy \n"));
if (this->shutdown (ACE_ENV_SINGLE_ARG_PARAMETER) == 1)
return;
@@ -46,7 +46,7 @@ TAO_NS_ProxyPushConsumer::destroy (ACE_ENV_SINGLE_ARG_DECL)
}
CosNotifyChannelAdmin::ProxyType
-TAO_NS_ProxyPushConsumer::MyType (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+TAO_Notify_ProxyPushConsumer::MyType (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((
CORBA::SystemException
))
@@ -55,14 +55,14 @@ TAO_NS_ProxyPushConsumer::MyType (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
}
void
-TAO_NS_ProxyPushConsumer::push (TAO_NS_Event_var &/*event*/)
+TAO_Notify_ProxyPushConsumer::push (TAO_Notify_Event_var &/*event*/)
{
// This should never be called.
ACE_ASSERT (1);
}
void
-TAO_NS_ProxyPushConsumer::push (const CORBA::Any& any ACE_ENV_ARG_DECL)
+TAO_Notify_ProxyPushConsumer::push (const CORBA::Any& any ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException
, CosEventComm::Disconnected
@@ -78,24 +78,24 @@ TAO_NS_ProxyPushConsumer::push (const CORBA::Any& any ACE_ENV_ARG_DECL)
ACE_THROW (CosEventComm::Disconnected ());
}
- TAO_NS_AnyEvent_No_Copy event (any);
+ TAO_Notify_AnyEvent_No_Copy event (any);
- TAO_NS_Method_Request_Lookup_No_Copy request (&event, this);
+ TAO_Notify_Method_Request_Lookup_No_Copy request (&event, this);
this->worker_task ()->execute (request ACE_ENV_ARG_PARAMETER);
}
void
-TAO_NS_ProxyPushConsumer::connect_any_push_supplier (CosEventComm::PushSupplier_ptr push_supplier ACE_ENV_ARG_DECL)
+TAO_Notify_ProxyPushConsumer::connect_any_push_supplier (CosEventComm::PushSupplier_ptr push_supplier ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException
, CosEventChannelAdmin::AlreadyConnected
))
{
// Convert Supplier to Base Type
- TAO_NS_PushSupplier *supplier;
+ TAO_Notify_PushSupplier *supplier;
ACE_NEW_THROW_EX (supplier,
- TAO_NS_PushSupplier (this),
+ TAO_Notify_PushSupplier (this),
CORBA::NO_MEMORY ());
supplier->init (push_supplier ACE_ENV_ARG_PARAMETER);
@@ -104,7 +104,7 @@ TAO_NS_ProxyPushConsumer::connect_any_push_supplier (CosEventComm::PushSupplier_
this->connect (supplier ACE_ENV_ARG_PARAMETER);
}
-void TAO_NS_ProxyPushConsumer::disconnect_push_consumer (ACE_ENV_SINGLE_ARG_DECL)
+void TAO_Notify_ProxyPushConsumer::disconnect_push_consumer (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException
))