#include <Select_Reactor_Base.h>
Collaboration diagram for ACE_Event_Tuple:
Public Member Functions | |
ACE_Event_Tuple (void) | |
Default constructor. | |
ACE_Event_Tuple (ACE_Event_Handler *eh, ACE_HANDLE h) | |
Constructor. | |
bool | operator== (const ACE_Event_Tuple &rhs) const |
Equality operator. | |
bool | operator!= (const ACE_Event_Tuple &rhs) const |
Inequality operator. | |
Public Attributes | |
ACE_HANDLE | handle_ |
Handle. | |
ACE_Event_Handler * | event_handler_ |
ACE_Event_Handler associated with the ACE_HANDLE. |
One ACE_Event_Handler is registered for one or more ACE_HANDLE. At various points, this information must be stored explicitly. This class provides a lightweight mechanism to do so.
Definition at line 92 of file Select_Reactor_Base.h.
|
Default constructor.
Definition at line 89 of file Select_Reactor_Base.inl.
00090 : handle_ (ACE_INVALID_HANDLE), 00091 event_handler_ (0) 00092 { 00093 } |
|
Constructor.
Definition at line 96 of file Select_Reactor_Base.inl.
00098 : handle_ (h), 00099 event_handler_ (eh) 00100 { 00101 } |
|
Inequality operator.
Definition at line 110 of file Select_Reactor_Base.inl.
00111 { 00112 return !(*this == rhs); 00113 } |
|
Equality operator.
Definition at line 104 of file Select_Reactor_Base.inl. References handle_.
|
|
ACE_Event_Handler associated with the ACE_HANDLE.
Definition at line 115 of file Select_Reactor_Base.h. Referenced by ACE_Priority_Reactor::build_bucket(), and ACE_Priority_Reactor::dispatch_io_set(). |
|
Handle.
Definition at line 112 of file Select_Reactor_Base.h. Referenced by ACE_Priority_Reactor::dispatch_io_set(), and operator==(). |