summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Latency/AMI/Server_Task.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Latency/AMI/Server_Task.h')
-rw-r--r--TAO/performance-tests/Latency/AMI/Server_Task.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/TAO/performance-tests/Latency/AMI/Server_Task.h b/TAO/performance-tests/Latency/AMI/Server_Task.h
new file mode 100644
index 00000000000..dcb06d9030c
--- /dev/null
+++ b/TAO/performance-tests/Latency/AMI/Server_Task.h
@@ -0,0 +1,31 @@
+//
+// $Id$
+//
+
+#ifndef SERVER_TASK_H
+#define SERVER_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 Server_Task : public ACE_Task_Base
+{
+public:
+ /// Constructor
+ Server_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 /* SERVER_TASK_H */