summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Supplier.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Supplier.h')
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Supplier.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Supplier.h b/TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Supplier.h
new file mode 100644
index 00000000000..4f16f7114d5
--- /dev/null
+++ b/TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Supplier.h
@@ -0,0 +1,59 @@
+/**
+ * @file Supplier.h
+ *
+ * $Id$
+ *
+ */
+
+#ifndef ECCL_SUPPLIER_H
+#define ECCL_SUPPLIER_H
+
+#include "orbsvcs/RtecEventCommS.h"
+#include "orbsvcs/RtecEventChannelAdminC.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+/**
+ * @class ECCL_Supplier
+ *
+ * @brief Implement a simple supplier to keep track of the latency
+ *
+ */
+class ECCL_Supplier
+ : public virtual POA_RtecEventComm::PushSupplier
+ , public virtual PortableServer::RefCountServantBase
+{
+public:
+ /// Constructor
+ ECCL_Supplier (void);
+
+ /// Connect to the event channel
+ void connect (RtecEventChannelAdmin::EventChannel_ptr ec,
+ int event_type
+ TAO_ENV_ARG_DECL);
+
+ /// Disconnect from the event channel
+ void disconnect (TAO_ENV_SINGLE_ARG_DECL);
+
+ void push (const RtecEventComm::EventSet &events
+ TAO_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+ //@{
+ /** @name The RtecEventComm::PushSupplier methods
+ */
+ virtual void disconnect_push_supplier (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ //@}
+
+private:
+ /// Synchronize access to the internal data
+ TAO_SYNCH_MUTEX mutex_;
+
+ /// The proxy this object is connected to
+ RtecEventChannelAdmin::ProxyPushConsumer_var proxy_consumer_;
+};
+
+#endif /* ECCL_SUPPLIER_H */