summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Consumer.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Consumer.h')
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Consumer.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Consumer.h b/TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Consumer.h
new file mode 100644
index 00000000000..5fe9f00fce7
--- /dev/null
+++ b/TAO/orbsvcs/performance-tests/EC_Colocated_Latency/Consumer.h
@@ -0,0 +1,66 @@
+/**
+ * @file Consumer.h
+ *
+ * $Id$
+ *
+ */
+
+#ifndef ECCL_CONSUMER_H
+#define ECCL_CONSUMER_H
+
+#include "orbsvcs/RtecEventCommS.h"
+#include "orbsvcs/RtecEventChannelAdminC.h"
+#include "ace/Sample_History.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+/**
+ * @class ECCL_Consumer
+ *
+ * @brief Implement a simple consumer to keep track of the latency
+ *
+ */
+class ECCL_Consumer
+ : public virtual POA_RtecEventComm::PushConsumer
+ , public virtual PortableServer::RefCountServantBase
+
+{
+public:
+ /// Constructor
+ ECCL_Consumer (int iterations);
+
+ /// 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);
+
+ /// Access the history of samples
+ ACE_Sample_History &sample_history (void);
+
+ //@{
+ /** @name The RtecEventComm::PushConsumer methods
+ */
+ virtual void push (const RtecEventComm::EventSet& events
+ TAO_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void disconnect_push_consumer (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::ProxyPushSupplier_var proxy_supplier_;
+
+ /// The history of latency samples
+ ACE_Sample_History sample_history_;
+};
+
+#endif /* ECCL_CONSUMER_H */