summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/TM_Daemon/Client_Task.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/DAnCE/TM_Daemon/Client_Task.h')
-rw-r--r--CIAO/DAnCE/TM_Daemon/Client_Task.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/CIAO/DAnCE/TM_Daemon/Client_Task.h b/CIAO/DAnCE/TM_Daemon/Client_Task.h
new file mode 100644
index 00000000000..75d2bbf86a0
--- /dev/null
+++ b/CIAO/DAnCE/TM_Daemon/Client_Task.h
@@ -0,0 +1,27 @@
+#ifndef CLIENT_TASK_H
+#define CLIENT_TASK_H
+#include /**/ "ace/pre.h"
+
+#include "tao/ORB.h"
+#include "ace/Task.h"
+
+/// Implement a simple ACE_Task to run the ORB event loop
+/**
+ * This class is used to implement a simple thread pool.
+ */
+class Client_Task : public ACE_Task_Base
+{
+public:
+ /// Constructor
+ Client_Task (CORBA::ORB_ptr orb);
+
+ /// The thread entry point
+ virtual int svc (void);
+
+private:
+ /// Keep a reference to the ORB
+ CORBA::ORB_var orb_;
+};
+
+#include /**/ "ace/post.h"
+#endif /* CLIENT_TASK_H */