#include <Asynch_IO.h>
Inheritance diagram for ACE_Asynch_Connect:
Public Member Functions | |
ACE_Asynch_Connect (void) | |
A do nothing constructor. | |
virtual | ~ACE_Asynch_Connect (void) |
Destructor. | |
int | open (ACE_Handler &handler, ACE_HANDLE handle=ACE_INVALID_HANDLE, const void *completion_key=0, ACE_Proactor *proactor=0) |
int | connect (ACE_HANDLE connect_handle, const ACE_Addr &remote_sap, const ACE_Addr &local_sap, int reuse_addr, const void *act=0, int priority=0, int signal_number=ACE_SIGRTMIN) |
virtual ACE_Asynch_Operation_Impl * | implementation (void) const |
Return the underlying implementation class. | |
Protected Attributes | |
ACE_Asynch_Connect_Impl * | implementation_ |
Classes | |
class | Result |
This is that class which will be passed back to the handler when the asynchronous connect completes. More... |
Once open
is called, multiple asynchronous connect operationss can started using this class. A ACE_Asynch_Connect::Result will be passed back to the associated ACE_Handler when the asynchronous connect completes through the ACE_Handler::handle_connect() callback.
ACE_Asynch_Connect::ACE_Asynch_Connect | ( | void | ) |
A do nothing constructor.
ACE_Asynch_Connect::~ACE_Asynch_Connect | ( | void | ) | [virtual] |
Destructor.
int ACE_Asynch_Connect::connect | ( | ACE_HANDLE | connect_handle, | |
const ACE_Addr & | remote_sap, | |||
const ACE_Addr & | local_sap, | |||
int | reuse_addr, | |||
const void * | act = 0 , |
|||
int | priority = 0 , |
|||
int | signal_number = ACE_SIGRTMIN | |||
) |
This starts off an asynchronous Connect.
ACE_Asynch_Operation_Impl * ACE_Asynch_Connect::implementation | ( | void | ) | const [virtual] |
int ACE_Asynch_Connect::open | ( | ACE_Handler & | handler, | |
ACE_HANDLE | handle = ACE_INVALID_HANDLE , |
|||
const void * | completion_key = 0 , |
|||
ACE_Proactor * | proactor = 0 | |||
) |
Initializes the factory with information which will be used with each asynchronous call.
ACE_INVALID_HANDLE
. Reimplemented from ACE_Asynch_Operation.
Delegation/implementation class that all methods will be forwarded to.