#include <TP_Reactor.h>
Collaboration diagram for ACE_EH_Dispatch_Info:

Public Methods | |
| ACE_EH_Dispatch_Info (void) | |
| void | set (ACE_HANDLE handle, ACE_Event_Handler *event_handler, ACE_Reactor_Mask mask, ACE_EH_PTMF callback) |
| void | reset (void) |
| int | dispatch (void) const |
Public Attributes | |
| ACE_HANDLE | handle_ |
| ACE_Event_Handler * | event_handler_ |
| ACE_Reactor_Mask | mask_ |
| ACE_EH_PTMF | callback_ |
| int | dispatch_ |
Private Methods | |
| ACE_EH_Dispatch_Info (const ACE_EH_Dispatch_Info &) | |
| ACE_EH_Dispatch_Info & | operator= (const ACE_EH_Dispatch_Info &) |
Definition at line 47 of file TP_Reactor.h.
|
|
Definition at line 21 of file TP_Reactor.i. References reset.
00022 {
00023 this->reset ();
00024 }
|
|
|
|
|
|
Definition at line 41 of file TP_Reactor.i. References dispatch_. Referenced by ACE_TP_Reactor::handle_socket_events.
00042 {
00043 return this->dispatch_;
00044 }
|
|
|
|
|
|
Definition at line 9 of file TP_Reactor.i. References callback_, dispatch_, event_handler_, handle_, mask_, and ACE_Event_Handler::NULL_MASK. Referenced by ACE_EH_Dispatch_Info, and ACE_TP_Reactor::get_socket_event_info.
00010 {
00011 this->dispatch_ = 0;
00012
00013 this->handle_ = ACE_INVALID_HANDLE;
00014 this->event_handler_ = 0;
00015 this->mask_ = ACE_Event_Handler::NULL_MASK;
00016 this->callback_ = 0;
00017 }
|
|
||||||||||||||||||||
|
Definition at line 27 of file TP_Reactor.i. References ACE_EH_PTMF, ACE_Reactor_Mask, callback_, dispatch_, event_handler_, handle_, and mask_. Referenced by ACE_TP_Reactor::get_socket_event_info.
00031 {
00032 this->dispatch_ = 1;
00033
00034 this->handle_ = handle;
00035 this->event_handler_ = event_handler;
00036 this->mask_ = mask;
00037 this->callback_ = callback;
00038 }
|
|
|
Definition at line 65 of file TP_Reactor.h. Referenced by ACE_TP_Reactor::dispatch_socket_event, reset, and set. |
|
|
Definition at line 67 of file TP_Reactor.h. |
|
|
Definition at line 63 of file TP_Reactor.h. Referenced by ACE_TP_Reactor::dispatch_socket_event, ACE_TP_Reactor::handle_socket_events, reset, and set. |
|
|
Definition at line 62 of file TP_Reactor.h. Referenced by ACE_TP_Reactor::dispatch_socket_event, ACE_TP_Reactor::handle_socket_events, reset, and set. |
|
|
Definition at line 64 of file TP_Reactor.h. Referenced by ACE_TP_Reactor::dispatch_socket_event, reset, and set. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002