#include <Asynch_IO.h>
Inheritance diagram for ACE_Asynch_Connect::Result:
Public Member Functions | |
ACE_HANDLE | connect_handle (void) const |
I/O handle for the connection. | |
ACE_Asynch_Connect_Result_Impl * | implementation (void) const |
Get the implementation. | |
Protected Member Functions | |
Result (ACE_Asynch_Connect_Result_Impl *implementation) | |
Contructor. Implementation will not be deleted. | |
virtual | ~Result (void) |
Destructor. | |
Protected Attributes | |
ACE_Asynch_Connect_Result_Impl * | implementation_ |
Impelmentation class. | |
Friends | |
class | ACE_POSIX_Asynch_Connect_Result |
class | ACE_WIN32_Asynch_Connect_Result |
This class has all the information necessary for the handler to uniquely identify the completion of the asynchronous connect.
Definition at line 1000 of file Asynch_IO.h.
|
Contructor. Implementation will not be deleted.
Definition at line 718 of file Asynch_IO.cpp.
00719 : ACE_Asynch_Result (implementation), 00720 implementation_ (implementation) 00721 { 00722 } |
|
Destructor.
Definition at line 724 of file Asynch_IO.cpp.
00725 { 00726 // Proactor will delete the implementation when the <complete> call 00727 // completes. 00728 } |
|
I/O handle for the connection.
Definition at line 731 of file Asynch_IO.cpp. References ACE_Asynch_Connect_Result_Impl::connect_handle(), and implementation(). Referenced by ACE_Asynch_Connector< HANDLER >::handle_connect(), and ACE_Asynch_Connector< HANDLER >::parse_address().
00732 { 00733 return this->implementation ()->connect_handle (); 00734 } |
|
Get the implementation.
Reimplemented from ACE_Asynch_Result. Definition at line 738 of file Asynch_IO.cpp. Referenced by connect_handle().
00739 { 00740 return this->implementation_; 00741 } |
|
The concrete implementation result classes only construct this class. Definition at line 1005 of file Asynch_IO.h. |
|
Definition at line 1006 of file Asynch_IO.h. |
|
Impelmentation class.
Reimplemented from ACE_Asynch_Result. Definition at line 1024 of file Asynch_IO.h. |