1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
.TH ACE_Asynch_Read_File::Result 3 "1 Dec 2001" "ACE" \" -*- nroff -*-
.ad l
.nh
.SH NAME
ACE_Asynch_Read_File::Result \- This is that class which will be passed back to the <handler> when the asynchronous read completes. This class forwards all the methods to the implementation class.
.SH SYNOPSIS
.br
.PP
\fC#include <Asynch_IO.h>\fR
.PP
Inherits \fBACE_Asynch_Read_Stream::Result\fR.
.PP
.SS Public Methods
.in +1c
.ti -1c
.RI "\fBACE_Asynch_Read_File_Result_Impl\fR* \fBimplementation\fR (void) const"
.br
.RI "\fIGet the implementation class.\fR"
.in -1c
.SS Protected Methods
.in +1c
.ti -1c
.RI "\fBResult\fR (\fBACE_Asynch_Read_File_Result_Impl\fR *implementation)"
.br
.RI "\fIConstructor. This implementation will not be deleted.\fR"
.ti -1c
.RI "virtual \fB~Result\fR (void)"
.br
.RI "\fIDestructor.\fR"
.in -1c
.SS Protected Attributes
.in +1c
.ti -1c
.RI "\fBACE_Asynch_Read_File_Result_Impl\fR* \fBimplementation_\fR"
.br
.RI "\fIThe implementation class.\fR"
.in -1c
.SS Private Methods
.in +1c
.ti -1c
.RI "void \fBoperator=\fR (Result &)"
.br
.RI "\fIHere just to provide an dummpy implementation, since the one auto generated by MSVC is flagged as infinitely recursive.\fR"
.in -1c
.SS Friends
.in +1c
.ti -1c
.RI "class \fBACE_POSIX_Asynch_Read_File_Result\fR"
.br
.ti -1c
.RI "class \fBACE_WIN32_Asynch_Read_File_Result\fR"
.br
.in -1c
.SH DETAILED DESCRIPTION
.PP
This is that class which will be passed back to the <handler> when the asynchronous read completes. This class forwards all the methods to the implementation class.
.PP
.PP
This class has all the information necessary for the <handler> to uniquiely identify the completion of the asynchronous read. This class differs slightly from \fBACE_Asynch_Read_Stream::Result\fR as it calls back on the <handler> instead of . No additional state is required by this class as \fBACE_Asynch_Result\fR can store the <offset>.
.PP
.SH CONSTRUCTOR & DESTRUCTOR DOCUMENTATION
.PP
.SS ACE_Asynch_Read_File::Result::Result (\fBACE_Asynch_Read_File_Result_Impl\fR * implementation)\fC [protected]\fR
.PP
Constructor. This implementation will not be deleted.
.PP
.SS ACE_Asynch_Read_File::Result::~Result (void)\fC [protected, virtual]\fR
.PP
Destructor.
.PP
Reimplemented from \fBACE_Asynch_Read_Stream::Result\fR.
.SH MEMBER FUNCTION DOCUMENTATION
.PP
.SS \fBACE_Asynch_Read_File_Result_Impl\fR * ACE_Asynch_Read_File::Result::implementation (void) const
.PP
Get the implementation class.
.PP
Reimplemented from \fBACE_Asynch_Read_Stream::Result\fR.
.SS void ACE_Asynch_Read_File::Result::operator= (Result &)\fC [inline, private]\fR
.PP
Here just to provide an dummpy implementation, since the one auto generated by MSVC is flagged as infinitely recursive.
.PP
.SH FRIENDS AND RELATED FUNCTION DOCUMENTATION
.PP
.SS class ACE_POSIX_Asynch_Read_File_Result\fC [friend]\fR
.PP
The concrete implementation result classes only construct this class.
.PP
.SS class ACE_WIN32_Asynch_Read_File_Result\fC [friend]\fR
.PP
.SH MEMBER DATA DOCUMENTATION
.PP
.SS \fBACE_Asynch_Read_File_Result_Impl\fR * ACE_Asynch_Read_File::Result::implementation_\fC [protected]\fR
.PP
The implementation class.
.PP
Reimplemented from \fBACE_Asynch_Read_Stream::Result\fR.
.SH AUTHOR
.PP
Generated automatically by Doxygen for ACE from the source code.
|