summaryrefslogtreecommitdiff
path: root/tests/Reactor_Fairness_Test.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Reactor_Fairness_Test.h')
-rw-r--r--tests/Reactor_Fairness_Test.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/Reactor_Fairness_Test.h b/tests/Reactor_Fairness_Test.h
new file mode 100644
index 00000000000..6b8815ace11
--- /dev/null
+++ b/tests/Reactor_Fairness_Test.h
@@ -0,0 +1,49 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// tests
+//
+// = FILENAME
+// Reactor_Fairness_Test.h
+//
+// = DESCRIPTION
+// 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 : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>
+{
+ // = TITLE
+ // Simple class for reading in the data
+public:
+ Read_Handler () : chunks_in (0) {}
+
+ virtual int handle_input (ACE_HANDLE h);
+ virtual int handle_close (ACE_HANDLE handle,
+ ACE_Reactor_Mask close_mask);
+ // The Svc_Handler callbacks.
+
+private:
+ unsigned int chunks_in;
+};
+
+#endif /* ACE_TESTS_REACTOR_FAIRNESS_TEST_H */