summaryrefslogtreecommitdiff
path: root/ACE/tests/Reactor_Fairness_Test.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Reactor_Fairness_Test.h')
-rw-r--r--ACE/tests/Reactor_Fairness_Test.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/ACE/tests/Reactor_Fairness_Test.h b/ACE/tests/Reactor_Fairness_Test.h
new file mode 100644
index 00000000000..589947cef17
--- /dev/null
+++ b/ACE/tests/Reactor_Fairness_Test.h
@@ -0,0 +1,49 @@
+
+//=============================================================================
+/**
+ * @file Reactor_Fairness_Test.h
+ *
+ * $Id$
+ *
+ * This file includes template class definitions for the
+ * Reactor_Fairness_Test.cpp program. This class gets its own
+ * header file to work around AIX C++ compiler "features" related
+ * to template instantiation...
+ *
+ *
+ * @author Steve Huston <shuston@riverace.com>
+ */
+//=============================================================================
+
+
+#ifndef ACE_TESTS_REACTOR_FAIRNESS_TEST_H
+#define ACE_TESTS_REACTOR_FAIRNESS_TEST_H
+
+#include "ace/SOCK_Stream.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "ace/Svc_Handler.h"
+
+/**
+ * @class Read_Handler
+ *
+ * @brief Simple class for reading in the data
+ */
+class Read_Handler : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>
+{
+public:
+ Read_Handler () : chunks_in (0) {}
+
+ /// The Svc_Handler callbacks.
+ virtual int handle_input (ACE_HANDLE h);
+ virtual int handle_close (ACE_HANDLE handle,
+ ACE_Reactor_Mask close_mask);
+
+private:
+ unsigned int chunks_in;
+};
+
+#endif /* ACE_TESTS_REACTOR_FAIRNESS_TEST_H */