summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/CosEvent/ProxyPushConsumer_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/CosEvent/ProxyPushConsumer_i.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/CosEvent/ProxyPushConsumer_i.h77
1 files changed, 0 insertions, 77 deletions
diff --git a/TAO/orbsvcs/orbsvcs/CosEvent/ProxyPushConsumer_i.h b/TAO/orbsvcs/orbsvcs/CosEvent/ProxyPushConsumer_i.h
deleted file mode 100644
index a848334014c..00000000000
--- a/TAO/orbsvcs/orbsvcs/CosEvent/ProxyPushConsumer_i.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ================================================================
-//
-// = LIBRARY
-// TAO services
-//
-// = FILENAME
-// ProxyPushConsumer_i
-//
-// = AUTHOR
-// Pradeep Gore <pradeep@cs.wustl.edu>
-//
-// = DESCRIPTION
-// This has the implementation of the
-// CosEventChannelAdmin::ProxyPushConsumer interface.
-//
-// ================================================================
-
-#if !defined (_PROXYPUSHCONSUMER_H)
-#define _PROXYPUSHCONSUMER_H
-
-#include "orbsvcs/RtecEventChannelAdminS.h"
-#include "orbsvcs/CosEventChannelAdminS.h"
-
-// @@ Pradeep, all your classes should have a prefix, to avoid
-// namespace pollution (think about a user trying to name his class
-// PushSupplierWrapper). Something like TAO_CosEC_
-class PushSupplierWrapper;
-
-class TAO_ORBSVCS_Export ProxyPushConsumer_i : public POA_CosEventChannelAdmin::ProxyPushConsumer
-{
- // = TITLE
- // class ProxyPushConsumer_i implements the ProxyPushConsumer
- // interface.
- //
- // = DESCRIPTION
- // This implementation of the ProxyPushConsumer uses the
- // RtecEventChannelAdmin::ProxyPushConsumer.
- //
-public:
- // = Initialization and termination methods.
- ProxyPushConsumer_i (const RtecEventChannelAdmin::SupplierQOS &qos,
- RtecEventChannelAdmin::ProxyPushConsumer_ptr ppc);
- // Constructor.
-
- ~ProxyPushConsumer_i (void);
- // Destructor.
-
- virtual void push (const CORBA::Any &data,
- CORBA::Environment &TAO_TRY_ENV);
- // Suppliers call this method to pass data to connected consumers.
-
- virtual void disconnect_push_consumer (CORBA::Environment &TAO_TRY_ENV);
- // Disconnects the supplier from the event communication.
-
- virtual void connect_push_supplier(CosEventComm::PushSupplier_ptr push_supplier,
- CORBA::Environment &TAO_TRY_ENV);
- // Connects a push supplier.
-
-private:
- int connected (void);
- // Returns 0 if a push_supplier is already connected to this
- // ProxyPushConsumer, otherwise it returns a 1.
-
- const RtecEventChannelAdmin::SupplierQOS &qos_;
- // The SupplierQOS specified by the user of this class.
-
- RtecEventChannelAdmin::ProxyPushConsumer_ptr ppc_;
- // The Rtec ProxyPushConsumer specified by the user of this class.
-
- PushSupplierWrapper *wrapper_;
- // The Rtec PushSupplier wrapper used by the Rtec ProxyPushConsumer.
-};
-
-#endif /* _PROXYPUSHCONSUMER_H */