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


Public Member Functions | |
| ACE_Asynch_Read_File_Result_Impl * | implementation (void) const | 
| Get the implementation class.   | |
Protected Member Functions | |
| Result (ACE_Asynch_Read_File_Result_Impl *implementation) | |
| Constructor. This implementation will not be deleted.   | |
| virtual | ~Result (void) | 
| Destructor.   | |
Protected Attributes | |
| ACE_Asynch_Read_File_Result_Impl * | implementation_ | 
| The implementation class.   | |
Private Member Functions | |
| void | operator= (Result &) | 
Friends | |
| class | ACE_POSIX_Asynch_Read_File_Result | 
| class | ACE_WIN32_Asynch_Read_File_Result | 
This class has all the information necessary for the {handler} to uniquiely identify the completion of the asynchronous read. This class differs slightly from ACE_Asynch_Read_Stream::Result as it calls back {ACE_Handler::handle_read_file} on the {handler} instead of {ACE_Handler::handle_read_stream}. No additional state is required by this class as ACE_Asynch_Result can store the {offset}.
Definition at line 635 of file Asynch_IO.h.
      
  | 
  
| 
 Constructor. This implementation will not be deleted. 
 Definition at line 438 of file Asynch_IO.cpp. 
 00439 : ACE_Asynch_Read_Stream::Result (implementation), 00440 implementation_ (implementation) 00441 { 00442 }  | 
  
      
  | 
  
| 
 Destructor. 
 Reimplemented from ACE_Asynch_Read_Stream::Result. Definition at line 444 of file Asynch_IO.cpp. 
 00445 {
00446   // Proactor will delete the implementation when <complete> call
00447   // completes.
00448 }
 | 
  
      
  | 
  
| 
 Get the implementation class. 
 Reimplemented from ACE_Asynch_Read_Stream::Result. Definition at line 451 of file Asynch_IO.cpp. 
 00452 {
00453   return this->implementation_;
00454 }
 | 
  
      
  | 
  
| 
 Here just to provide an dummpy implementation, since the one auto generated by MSVC is flagged as infinitely recursive Definition at line 660 of file Asynch_IO.h. 
 00660 {}
 | 
  
      
  | 
  
| 
 The concrete implementation result classes only construct this class. Definition at line 640 of file Asynch_IO.h.  | 
  
      
  | 
  
| 
 
 Definition at line 641 of file Asynch_IO.h.  | 
  
      
  | 
  
| 
 The implementation class. 
 Reimplemented from ACE_Asynch_Read_Stream::Result. Definition at line 655 of file Asynch_IO.h.  | 
  
 
1.3.6