#include <Asynch_IO.h>
Inheritance diagram for ACE_Asynch_Read_Dgram::Result:


Public Methods | |
| size_t | bytes_to_read (void) const |
| The number of bytes which were requested at the start of the asynchronous read. More... | |
| ACE_Message_Block * | message_block (void) const |
| Message block which contains the read data. More... | |
| int | flags (void) const |
| The flags used in the read. More... | |
| int | remote_address (ACE_Addr &addr) const |
| The address of where the packet came from. More... | |
| ACE_HANDLE | handle (void) const |
| I/O handle used for reading. More... | |
| ACE_Asynch_Read_Dgram_Result_Impl * | implementation (void) const |
| Get the implementation class. More... | |
Protected Methods | |
| Result (ACE_Asynch_Read_Dgram_Result_Impl *implementation) | |
| Constructor. More... | |
| virtual | ~Result (void) |
| Destructor. More... | |
Protected Attributes | |
| ACE_Asynch_Read_Dgram_Result_Impl * | implementation_ |
| The implementation class. More... | |
Friends | |
| class | ACE_POSIX_Asynch_Read_Dgram_Result |
| The concrete implementation result classes only construct this class. More... | |
| class | ACE_WIN32_Asynch_Read_Dgram_Result |
This class has all the information necessary for the <handler> to uniquiely identify the completion of the asynchronous read.
Definition at line 1289 of file Asynch_IO.h.
|
|
Constructor.
Definition at line 1322 of file Asynch_IO.cpp. References ACE_Asynch_Read_Dgram::implementation, and ACE_Asynch_Read_Dgram::implementation_.
01323 : ACE_Asynch_Result (implementation), 01324 implementation_ (implementation) 01325 { 01326 } |
|
|
Destructor.
Definition at line 1328 of file Asynch_IO.cpp.
01329 {
01330 }
|
|
|
The number of bytes which were requested at the start of the asynchronous read.
Definition at line 1311 of file Asynch_IO.cpp. References ACE_Asynch_Read_Dgram_Result_Impl::bytes_to_read, and implementation.
01312 {
01313 return this->implementation ()->bytes_to_read ();
01314 }
|
|
|
The flags used in the read.
Definition at line 1305 of file Asynch_IO.cpp. References ACE_Asynch_Read_Dgram_Result_Impl::flags, and implementation.
01306 {
01307 return this->implementation ()->flags ();
01308 }
|
|
|
I/O handle used for reading.
Definition at line 1317 of file Asynch_IO.cpp. References ACE_Asynch_Read_Dgram_Result_Impl::handle, and implementation.
01318 {
01319 return this->implementation ()->handle();
01320 }
|
|
|
Get the implementation class.
Reimplemented from ACE_Asynch_Result. Definition at line 1333 of file Asynch_IO.cpp. References implementation_. Referenced by bytes_to_read, flags, handle, message_block, and remote_address.
01334 {
01335 return this->implementation_;
01336 }
|
|
|
Message block which contains the read data.
Definition at line 1299 of file Asynch_IO.cpp. References implementation, and ACE_Asynch_Read_Dgram_Result_Impl::message_block.
01300 {
01301 return this->implementation ()->message_block ();
01302 }
|
|
|
The address of where the packet came from.
Definition at line 1293 of file Asynch_IO.cpp. References implementation, and ACE_Asynch_Read_Dgram_Result_Impl::remote_address.
01294 {
01295 return this->implementation ()->remote_address (addr);
01296 }
|
|
|
The concrete implementation result classes only construct this class.
Definition at line 1294 of file Asynch_IO.h. |
|
|
Definition at line 1295 of file Asynch_IO.h. |
|
|
The implementation class.
Reimplemented from ACE_Asynch_Result. Definition at line 1326 of file Asynch_IO.h. Referenced by implementation. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002