summaryrefslogtreecommitdiff
path: root/ace/WFMO_Reactor.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/WFMO_Reactor.h')
-rw-r--r--ace/WFMO_Reactor.h16
1 files changed, 4 insertions, 12 deletions
diff --git a/ace/WFMO_Reactor.h b/ace/WFMO_Reactor.h
index a9fbec8ecc4..d98bdd4612b 100644
--- a/ace/WFMO_Reactor.h
+++ b/ace/WFMO_Reactor.h
@@ -535,8 +535,7 @@ public:
* the reactor itself). Returns the number of notifications purged.
* Returns -1 on error.
*/
- virtual int purge_pending_notifications (ACE_Event_Handler *,
- ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK);
+ virtual int purge_pending_notifications (ACE_Event_Handler *);
/// Dump the state of an object.
virtual void dump (void) const;
@@ -883,12 +882,6 @@ public:
/// Resume all <handles>.
virtual int resume_handlers (void);
- /// Does the reactor allow the application to resume the handle on
- /// its own ie. can it pass on the control of handle resumption to
- /// the application. A positive value indicates that the handlers
- /// are application resumable. A value of 0 indicates otherwise.
- virtual int resumable_handler (void);
-
/**
* Return 1 if we any event associations were made by the reactor
* for the handles that it waits on, 0 otherwise. Since the
@@ -911,11 +904,11 @@ public:
* @see reset_timer_interval()
*
* @param event_handler event handler to schedule on reactor
- * @param arg argument passed to the handle_timeout() method of event_handler
+ * @param arg argument passed to the handle_timeout() method of event_handler
* @param delta time interval after which the timer will expire
* @param interval time interval after which the timer will be automatically rescheduled
* @return -1 on failure, a timer_id value on success
- */
+ */
virtual long schedule_timer (ACE_Event_Handler *event_handler,
const void *arg,
const ACE_Time_Value &delay,
@@ -1024,8 +1017,7 @@ public:
* <ACE_Event_Handler> object. Returns the number of notifications
* purged. Returns -1 on error.
*/
- virtual int purge_pending_notifications (ACE_Event_Handler * = 0,
- ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK);
+ virtual int purge_pending_notifications (ACE_Event_Handler * = 0);
// = Assorted helper methods.