#include <WIN32_Asynch_IO.h>
Inheritance diagram for ACE_WIN32_Asynch_Accept_Result:
Public Methods | |
size_t | bytes_to_read (void) const |
ACE_Message_Block & | message_block (void) const |
Message block which contains the read data. | |
ACE_HANDLE | listen_handle (void) const |
I/O handle used for accepting new connections. | |
ACE_HANDLE | accept_handle (void) const |
I/O handle for the new connection. | |
size_t | bytes_transferred (void) const |
Number of bytes transferred by the operation. | |
const void * | act (void) const |
ACT associated with the operation. | |
int | success (void) const |
Did the operation succeed? | |
const void * | completion_key (void) const |
u_long | error (void) const |
Error value if the operation fail. | |
ACE_HANDLE | event (void) const |
Event associated with the OVERLAPPED structure. | |
u_long | offset (void) const |
This really make sense only when doing file I/O. | |
u_long | offset_high (void) const |
Offset_high associated with the OVERLAPPED structure. | |
int | priority (void) const |
int | signal_number (void) const |
No-op. Returns 0. | |
int | post_completion (ACE_Proactor_Impl *proactor) |
Post <this> to the Proactor's completion port. | |
Protected Methods | |
ACE_WIN32_Asynch_Accept_Result (ACE_Handler &handler, ACE_HANDLE listen_handle, ACE_HANDLE accept_handle, ACE_Message_Block &message_block, size_t bytes_to_read, const void *act, ACE_HANDLE event, int priority, int signal_number=0) | |
virtual void | complete (size_t bytes_transferred, int success, const void *completion_key, u_long error) |
ACE_Proactor will call this method when the accept completes. | |
virtual | ~ACE_WIN32_Asynch_Accept_Result (void) |
Destructor. | |
Protected Attributes | |
size_t | bytes_to_read_ |
Bytes requested when the asynchronous read was initiated. | |
ACE_Message_Block & | message_block_ |
Message block for reading the data into. | |
ACE_HANDLE | listen_handle_ |
I/O handle used for accepting new connections. | |
ACE_HANDLE | accept_handle_ |
I/O handle for the new connection. | |
Friends | |
class | ACE_WIN32_Asynch_Accept |
Factory will have special permission. | |
class | ACE_WIN32_Proactor |
Proactor class has special permission. |
This class has all the information necessary for the <handler> to uniquiely identify the completion of the asynchronous accept.
|
Constructor is protected since creation is limited to ACE_Asynch_Accept factory. |
|
Destructor.
|
|
I/O handle for the new connection.
Implements ACE_Asynch_Accept_Result_Impl. |
|
ACT associated with the operation.
Reimplemented from ACE_WIN32_Asynch_Result. |
|
The number of bytes which were requested at the start of the asynchronous accept. Implements ACE_Asynch_Accept_Result_Impl. |
|
Number of bytes transferred by the operation.
Reimplemented from ACE_WIN32_Asynch_Result. |
|
ACE_Proactor will call this method when the accept completes.
Implements ACE_Asynch_Result_Impl. |
|
This returns the ACT associated with the handle when it was registered with the I/O completion port. This ACT is not the same as the ACT associated with the asynchronous operation. Reimplemented from ACE_WIN32_Asynch_Result. |
|
Error value if the operation fail.
Reimplemented from ACE_WIN32_Asynch_Result. |
|
Event associated with the OVERLAPPED structure.
Reimplemented from ACE_WIN32_Asynch_Result. |
|
I/O handle used for accepting new connections.
Implements ACE_Asynch_Accept_Result_Impl. |
|
Message block which contains the read data.
Implements ACE_Asynch_Accept_Result_Impl. |
|
This really make sense only when doing file I/O.
Reimplemented from ACE_WIN32_Asynch_Result. |
|
Offset_high associated with the OVERLAPPED structure.
Reimplemented from ACE_WIN32_Asynch_Result. |
|
Post <this> to the Proactor's completion port.
Reimplemented from ACE_WIN32_Asynch_Result. |
|
The priority of the asynchronous operation. Currently, this is not supported on Win32. Reimplemented from ACE_WIN32_Asynch_Result. |
|
No-op. Returns 0.
Reimplemented from ACE_WIN32_Asynch_Result. |
|
Did the operation succeed?
Reimplemented from ACE_WIN32_Asynch_Result. |
|
Factory will have special permission.
Reimplemented from ACE_WIN32_Asynch_Result. |
|
Proactor class has special permission.
Reimplemented from ACE_WIN32_Asynch_Result. |
|
I/O handle for the new connection.
|
|
Bytes requested when the asynchronous read was initiated.
|
|
I/O handle used for accepting new connections.
|
|
Message block for reading the data into.
|