#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_ |
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.
Definition at line 948 of file Asynch_IO.h.
|
|
A do nothing constructor.
Definition at line 660 of file Asynch_IO.cpp.
00661 : implementation_ (0) 00662 { 00663 } |
|
|
Destructor.
Definition at line 665 of file Asynch_IO.cpp.
00666 {
00667 // Delete the implementation.
00668 delete this->implementation_;
00669 this->implementation_ = 0;
00670 }
|
|
||||||||||||||||||||||||||||||||
|
This starts off an asynchronous Connect. Definition at line 693 of file Asynch_IO.cpp. References ACE_Asynch_Connect_Impl::connect(). Referenced by ACE_Asynch_Connector< HANDLER >::connect().
00700 {
00701 return this->implementation_->connect (connect_handle,
00702 remote_sap,
00703 local_sap,
00704 reuse_addr,
00705 act,
00706 priority,
00707 signal_number);
00708 }
|
|
|
Return the underlying implementation class.
Implements ACE_Asynch_Operation. Definition at line 711 of file Asynch_IO.cpp.
00712 {
00713 return this->implementation_;
00714 }
|
|
||||||||||||||||||||
|
Initializes the factory with information which will be used with each asynchronous call.
Reimplemented from ACE_Asynch_Operation. Definition at line 673 of file Asynch_IO.cpp. References ACE_Proactor::create_asynch_connect(), ACE_Asynch_Operation::get_proactor(), and ACE_Asynch_Operation::open(). Referenced by ACE_Asynch_Connector< HANDLER >::open().
00677 {
00678 // Get a proactor for/from the user.
00679 proactor = this->get_proactor (proactor, handler);
00680
00681 // Now let us get the implementation initialized.
00682 if ((this->implementation_ = proactor->create_asynch_connect ()) == 0)
00683 return -1;
00684
00685 // Call the <open> method of the base class.
00686 return ACE_Asynch_Operation::open (handler,
00687 handle,
00688 completion_key,
00689 proactor);
00690 }
|
|
|
Delegation/implementation class that all methods will be forwarded to. Definition at line 987 of file Asynch_IO.h. |
1.3.6