#include "ace/config-all.h"
#include "ace/Signal.h"
#include "ace/Timer_Queue.h"
#include "ace/Event_Handler.h"
#include "ace/Auto_Event.h"
#include "ace/Manual_Event.h"
#include "ace/Condition_Thread_Mutex.h"
#include "ace/Lock_Adapter_T.h"
#include "ace/Reactor_Impl.h"
#include "ace/Message_Queue.h"
#include "ace/Process_Mutex.h"
#include "ace/WFMO_Reactor.i"
Include dependency graph for WFMO_Reactor.h:
This graph shows which files directly or indirectly include this file:
Compounds | |
struct | _WSANETWORKEVENTS |
class | ACE_Wakeup_All_Threads_Handler |
This is a helper class whose sole purpose is to handle events on <ACE_WFMO_Reactor->wakeup_all_threads_>. More... | |
class | ACE_WFMO_Reactor |
An object oriented event demultiplexor and event handler. ACE_WFMO_Reactor is a Windows-only implementation of the ACE_Reactor interface that uses the WaitForMultipleObjects() event demultiplexer. More... | |
class | ACE_WFMO_Reactor_Handler_Repository |
Used to map <ACE_HANDLE>s onto the appropriate <ACE_Event_Handler> * and other information. More... | |
class | Common_Info |
This struct contains the necessary information for every <Event_Handler> entry. The reason the event is not in this structure is because we need to pass an event array into WaitForMultipleObjects and therefore keeping the events seperate makes sense. More... | |
class | Current_Info |
This structure inherits from the common structure to add information for current entries. More... | |
class | To_Be_Added_Info |
This structure inherits from the common structure to add information for <to_be_added> entries. More... | |
class | Suspended_Info |
This structure inherits from the common structure to add information for suspended entries. More... | |
class | ACE_WFMO_Reactor_Notify |
Unblock the <ACE_WFMO_Reactor> from its event loop, passing it an optional <ACE_Event_Handler> to dispatch. More... | |
Defines | |
#define | FD_READ_BIT 0 |
#define | FD_WRITE_BIT 1 |
#define | FD_OOB_BIT 2 |
#define | FD_ACCEPT_BIT 3 |
#define | FD_CONNECT_BIT 4 |
#define | FD_CLOSE_BIT 5 |
#define | FD_QOS_BIT 6 |
#define | FD_GROUP_QOS_BIT 7 |
#define | FD_QOS (1 << FD_QOS_BIT) |
#define | FD_GROUP_QOS (1 << FD_GROUP_QOS_BIT) |
#define | FD_MAX_EVENTS 8 |
#define | FD_ALL_EVENTS ((1 << FD_MAX_EVENTS) - 1) |
#define | WSAEVENT HANDLE |
Typedefs | |
typedef _WSANETWORKEVENTS | WSANETWORKEVENTS |
typedef _WSANETWORKEVENTS * | LPWSANETWORKEVENTS |
Functions | |
int | WSAEventSelect (SOCKET s, WSAEVENT hEventObject, long lNetworkEvents) |
int | WSAEnumNetworkEvents (SOCKET s, WSAEVENT hEventObject, LPWSANETWORKEVENTS lpNetworkEvents) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|