#include <POSIX_Asynch_IO.h>
Inheritance diagram for ACE_POSIX_Asynch_Read_File:
Public Methods | |
ACE_POSIX_Asynch_Read_File (ACE_POSIX_AIOCB_Proactor *posix_aiocb_proactor) | |
Constructor. More... | |
int | read (ACE_Message_Block &message_block, u_long bytes_to_read, u_long offset, u_long offset_high, const void *act, int priority, int signal_number=0) |
This starts off an asynchronous read. More... | |
virtual | ~ACE_POSIX_Asynch_Read_File (void) |
Destructor. More... | |
int | open (ACE_Handler &handler, ACE_HANDLE handle, const void *completion_key, ACE_Proactor *proactor=0) |
Initializes the factory with information which will be used with each asynchronous call. More... | |
int | cancel (void) |
Not implemented. Returns 0. More... | |
ACE_Proactor * | proactor (void) const |
Return the underlying proactor. More... | |
Private Methods | |
int | read (ACE_Message_Block &message_block, u_long bytes_to_read, const void *act, int priority, int signal_number=0) |
This belongs to ACE_POSIX_Asynch_Read_Stream. More... |
Once <open> is called, multiple asynchronous <read>s can started using this class. A <ACE_Asynch_Read_File::Result> will be passed back to the <handler> when the asynchronous reads completes through the <ACE_Handler::handle_read_file> callback.
This class differs slightly from <ACE_Asynch_Read_Stream> as it allows the user to specify an offset for the read.
|
Constructor.
|
|
Destructor.
|
|
Not implemented. Returns 0. @ Reimplemented from ACE_POSIX_Asynch_Read_Stream. |
|
Initializes the factory with information which will be used with each asynchronous call. If (<handle> == ACE_INVALID_HANDLE), <ACE_Handler::handle> will be called on the <handler> to get the correct handle. Reimplemented from ACE_POSIX_Asynch_Read_Stream. |
|
Return the underlying proactor.
Reimplemented from ACE_POSIX_Asynch_Read_Stream. |
|
This belongs to ACE_POSIX_Asynch_Read_Stream. We have defined this here to avoid compiler warnings and forward the method to <ACE_POSIX_Asynch_Read_Stream::read>. Reimplemented from ACE_Asynch_Read_File_Impl. |
|
This starts off an asynchronous read. Upto <bytes_to_read> will be read and stored in the <message_block>. The read will start at <offset> from the beginning of the file. Reimplemented from ACE_Asynch_Read_File_Impl. |