summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/Notify/Lanes/Consumer_Client.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/examples/Notify/Lanes/Consumer_Client.h')
-rw-r--r--TAO/orbsvcs/examples/Notify/Lanes/Consumer_Client.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/TAO/orbsvcs/examples/Notify/Lanes/Consumer_Client.h b/TAO/orbsvcs/examples/Notify/Lanes/Consumer_Client.h
new file mode 100644
index 00000000000..31193b994f2
--- /dev/null
+++ b/TAO/orbsvcs/examples/Notify/Lanes/Consumer_Client.h
@@ -0,0 +1,77 @@
+/* -*- C++ -*- */
+/**
+ * @file Consumer_Client.h
+ *
+ * $Id$
+ *
+ * @author Pradeep Gore <pradeep@oomworks.com>
+ *
+ *
+ */
+
+#ifndef TAO_Notify_CONSUMER_CLIENT_H
+#define TAO_Notify_CONSUMER_CLIENT_H
+
+#include /**/ "ace/pre.h"
+
+#include "ORB_Objects.h"
+
+#include "tao/RTCORBA/RTCORBA.h"
+
+#include "ace/SString.h"
+#include "ace/Task.h"
+
+class TAO_Notify_Lanes_Consumer;
+
+/**
+ * @class TAO_Notify_Lanes_Consumer_Client
+ *
+ * @brief
+ *
+ */
+class TAO_Notify_Lanes_Consumer_Client : public ACE_Task_Base
+{
+public:
+ /// Constuctor
+ TAO_Notify_Lanes_Consumer_Client (TAO_Notify_ORB_Objects& orb_objects);
+
+ /// Destructor
+ ~TAO_Notify_Lanes_Consumer_Client ();
+
+ /// Init
+ void initialize (ACE_ENV_SINGLE_ARG_DECL);
+
+ /// Run
+ void run (ACE_ENV_SINGLE_ARG_DECL);
+
+ /// Parse Args
+ int parse_args (int argc, char *argv[]);
+
+ /// The thread entry point.
+ virtual int svc (void);
+
+protected:
+ /// Create an RT POA with a single lane at the specified RT Priority.
+ PortableServer::POA_ptr create_rt_poa (ACE_ENV_SINGLE_ARG_DECL);
+
+ /// ORB Objects.
+ TAO_Notify_ORB_Objects orb_objects_;
+
+ /// Lock to serialize internal state.
+ TAO_SYNCH_MUTEX lock_;
+
+ /// Count how many consumers are done
+ int consumer_done_count_;
+
+ /// The Priority that we want the consumer lane to be at.
+ RTCORBA::Priority lane_priority_;
+
+ /// The Consumer.
+ TAO_Notify_Lanes_Consumer* consumer_;
+
+ /// The Type the Consumer should subscribe to.
+ ACE_CString event_type_;
+};
+
+#include /**/ "ace/post.h"
+#endif /* TAO_Notify_CONSUMER_CLIENT_H */