summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.cpp57
1 files changed, 0 insertions, 57 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.cpp b/TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.cpp
deleted file mode 100644
index 440b7728468..00000000000
--- a/TAO/orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.cpp
+++ /dev/null
@@ -1,57 +0,0 @@
-/* -*- C++ -*- $Id$ */
-
-#include "orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.h"
-#include "Notify_SupplierAdmin_i.h"
-
-// Implementation skeleton constructor
-TAO_Notify_ProxyPushConsumer_i::TAO_Notify_ProxyPushConsumer_i
-(TAO_Notify_SupplierAdmin_i &supplieradmin)
- :TAO_Notify_ProxyConsumer_i (supplieradmin)
-{
-}
-
-// Implementation skeleton destructor
-TAO_Notify_ProxyPushConsumer_i::~TAO_Notify_ProxyPushConsumer_i (void)
- {
- }
-
-CosNotifyChannelAdmin::ProxyPushConsumer_ptr
-TAO_Notify_ProxyPushConsumer_i::get_ref (CORBA::Environment &ACE_TRY_ENV)
-{
- return _this (ACE_TRY_ENV);
-}
-
-void TAO_Notify_ProxyPushConsumer_i::connect_any_push_supplier (
- CosEventComm::PushSupplier_ptr push_supplier,
- CORBA::Environment &ACE_TRY_ENV
- )
- ACE_THROW_SPEC ((
- CORBA::SystemException,
- CosEventChannelAdmin::AlreadyConnected
- ))
- {
- push_supplier_ = CosEventComm::PushSupplier::_duplicate (push_supplier);
- }
-
-void
-TAO_Notify_ProxyPushConsumer_i::push (const CORBA::Any& data,
- CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((
- CORBA::SystemException,
- CosEventComm::Disconnected
- ))
-{
- // Filtering comes here.
- myadmin_.get_dispatcher ().dispatch_event (data, ACE_TRY_ENV);
- ACE_CHECK;
-}
-
-void
-TAO_Notify_ProxyPushConsumer_i::disconnect_push_consumer
-(CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((
- CORBA::SystemException
- ))
-{
-
- }