summaryrefslogtreecommitdiff
path: root/ACE/ace/PIP_Reactive_IO_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/PIP_Reactive_IO_Handler.h')
-rw-r--r--ACE/ace/PIP_Reactive_IO_Handler.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/ACE/ace/PIP_Reactive_IO_Handler.h b/ACE/ace/PIP_Reactive_IO_Handler.h
deleted file mode 100644
index ae50ebf9b27..00000000000
--- a/ACE/ace/PIP_Reactive_IO_Handler.h
+++ /dev/null
@@ -1,54 +0,0 @@
- /**
- * @file PIP_IO_Handler.cpp
- *
- * // $Id$
- *
- * @author John Moore <ljohn7@gmail.com>
- *
- * This file contains the specification for a class
- * that manages network I/O
-*/
-
-
-#ifndef _PIP_REACTIVE_IO_HANDLER_H_
-#define _PIP_REACTIVE_IO_HANDLER_H_
-
-
-#include "ace/Message_Queue.h"
-#include "ace/PIP_IO_Handler.h"
-#include "ace/PIP_Messages.h"
-
-/**
- * @class ACE_PIP_Reactive_IO_Handler
- *
- * @brief Performs reactive network I/O in
- * the context of a distributed system
- * employing the the priority inheritance
- * protocol
- *
- * @author John Moore <ljohn7@gmail.com>
- */
-class ACE_Export ACE_PIP_Reactive_IO_Handler :
- public ACE_PIP_IO_Handler
-{
- public:
-
- /// Constructor
- ACE_PIP_Reactive_IO_Handler ();
- ~ACE_PIP_Reactive_IO_Handler();
-
- /// Closes all remote connections.
- virtual int handle_close (ACE_HANDLE handle, ACE_Reactor_Mask close_mask);
-
- /// Enqueue a message to be sent
- virtual int put_message (ACE_PIP_Protocol_Message* message);
-
- private:
-
-};
-
-
-
-#endif /* _PIP_Reactive_IO_Handler_H_ */
-
-