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


Public Methods | |
| ACE_Asynch_Write_File_Result_Impl * | implementation (void) const |
| Get the implementation class. More... | |
Protected Methods | |
| Result (ACE_Asynch_Write_File_Result_Impl *implementation) | |
| Constructor. This implementation will not be deleted. More... | |
| virtual | ~Result (void) |
| Destructor. More... | |
Protected Attributes | |
| ACE_Asynch_Write_File_Result_Impl * | implementation_ |
| The implementation class. More... | |
Private Methods | |
| void | operator= (Result &) |
| Here just to provide an dummpy implementation, since the one auto generated by MSVC is flagged as infinitely recursive. More... | |
Friends | |
| class | ACE_POSIX_Asynch_Write_File_Result |
| The concrete implementation result classes only construct this class. More... | |
| class | ACE_WIN32_Asynch_Write_File_Result |
This class has all the information necessary for the <handler> to uniquiely identify the completion of the asynchronous write. This class differs slightly from ACE_Asynch_Write_Stream::Result as it calls back <ACE_Handler::handle_write_file> on the <handler> instead of <ACE_Handler::handle_write_stream>. No additional state is required by this class as ACE_Asynch_Result can store the <offset>.
Definition at line 732 of file Asynch_IO.h.
|
|
Constructor. This implementation will not be deleted.
Definition at line 606 of file Asynch_IO.cpp.
00607 : ACE_Asynch_Write_Stream::Result (implementation), 00608 implementation_ (implementation) 00609 { 00610 } |
|
|
Destructor.
Reimplemented from ACE_Asynch_Write_Stream::Result. Definition at line 612 of file Asynch_IO.cpp.
00613 {
00614 // Proactor will delete the implementation when the <complete> call
00615 // completes.
00616 }
|
|
|
Get the implementation class.
Reimplemented from ACE_Asynch_Write_Stream::Result. Definition at line 619 of file Asynch_IO.cpp. References implementation_.
00620 {
00621 return this->implementation_;
00622 }
|
|
|
Here just to provide an dummpy implementation, since the one auto generated by MSVC is flagged as infinitely recursive.
Definition at line 757 of file Asynch_IO.h.
00757 {};
|
|
|
The concrete implementation result classes only construct this class.
Definition at line 737 of file Asynch_IO.h. |
|
|
Definition at line 738 of file Asynch_IO.h. |
|
|
The implementation class.
Reimplemented from ACE_Asynch_Write_Stream::Result. Definition at line 752 of file Asynch_IO.h. Referenced by implementation. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002