summaryrefslogtreecommitdiff
path: root/ace/Select_Reactor_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Select_Reactor_T.h')
-rw-r--r--ace/Select_Reactor_T.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/ace/Select_Reactor_T.h b/ace/Select_Reactor_T.h
index ca51ff20d0d..292730d8677 100644
--- a/ace/Select_Reactor_T.h
+++ b/ace/Select_Reactor_T.h
@@ -559,6 +559,13 @@ public:
virtual int owner (ACE_thread_t *);
// = Miscellaneous Handler operations.
+
+ /**
+ * Return the Event_Handler associated with <handle>. Return 0 if
+ * <handle> is not registered.
+ */
+ virtual ACE_Event_Handler *find_handler (ACE_HANDLE handle);
+
/**
* Check to see if <handle> is associated with a valid Event_Handler
* bound to <mask>. Return the <eh> associated with this <handler>
@@ -635,6 +642,9 @@ protected:
virtual int resume_i (ACE_HANDLE handle);
/// Implement the public <handler> method.
+ virtual ACE_Event_Handler *find_handler_i (ACE_HANDLE handle);
+
+ /// Implement the public <handler> method.
virtual int handler_i (ACE_HANDLE handle,
ACE_Reactor_Mask,
ACE_Event_Handler ** = 0);