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


| Public Member Functions | |
| ACE_Asynch_Write_File (void) | |
| A do nothing constructor. | |
| virtual | ~ACE_Asynch_Write_File (void) | 
| Destructor. | |
| int | open (ACE_Handler &handler, ACE_HANDLE handle=ACE_INVALID_HANDLE, const void *completion_key=0, ACE_Proactor *proactor=0) | 
| int | write (ACE_Message_Block &message_block, size_t bytes_to_write, unsigned long offset=0, unsigned long offset_high=0, const void *act=0, int priority=0, int signal_number=ACE_SIGRTMIN) | 
| int | writev (ACE_Message_Block &message_block, size_t bytes_to_write, unsigned long offset=0, unsigned long offset_high=0, const void *act=0, int priority=0, int signal_number=ACE_SIGRTMIN) | 
| virtual ACE_Asynch_Operation_Impl * | implementation (void) const | 
| Return the underlying implementation class. | |
| Protected Attributes | |
| ACE_Asynch_Write_File_Impl * | implementation_ | 
| Implementation object. | |
Once {open} is called, multiple asynchronous {write}s can be started using this class. A ACE_Asynch_Write_File::Result will be passed back to the {handler} when the asynchronous writes completes through the {ACE_Handler::handle_write_file} callback. This class differs slightly from ACE_Asynch_Write_Stream as it allows the user to specify an offset for the write.
Definition at line 683 of file Asynch_IO.h.
| 
 | 
| A do nothing constructor. 
 Definition at line 458 of file Asynch_IO.cpp. 
 00459 : implementation_ (0) 00460 { 00461 } | 
| 
 | 
| Destructor. 
 Definition at line 463 of file Asynch_IO.cpp. 
 00464 {
00465   // Delete the implementation.
00466   delete this->implementation_;
00467   this->implementation_ = 0;
00468 }
 | 
| 
 | 
| Return the underlying implementation class. 
 Reimplemented from ACE_Asynch_Write_Stream. Definition at line 529 of file Asynch_IO.cpp. 
 00530 {
00531   return this->implementation_;
00532 }
 | 
| 
 | ||||||||||||||||||||
| 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_Asynch_Write_Stream. Definition at line 471 of file Asynch_IO.cpp. References ACE_Proactor::create_asynch_write_file(), ACE_Asynch_Operation::get_proactor(), and ACE_Asynch_Operation::open(). 
 00475 {
00476   // Get a proactor for/from the user.
00477   proactor = this->get_proactor (proactor, handler);
00478 
00479   // Now let us get the implementation initialized.
00480   if ((this->implementation_ = proactor->create_asynch_write_file ()) == 0)
00481     return -1;
00482 
00483   // Call the <open> method of the base class.
00484   return ACE_Asynch_Operation::open (handler,
00485                                      handle,
00486                                      completion_key,
00487                                      proactor);
00488 }
 | 
| 
 | ||||||||||||||||||||||||||||||||
| This starts off an asynchronous write. Upto {bytes_to_write} will be written from the {message_block}, starting at the block's {rd_ptr}. The write will go to the file, starting {offset} bytes from the beginning of the file. Priority of the operation is specified by {priority}. On POSIX4-Unix, this is supported. Works like {nice} in Unix. Negative values are not allowed. 0 means priority of the operation same as the process priority. 1 means priority of the operation is one less than process. And so forth. On Win32, this is a no-op. {signal_number} is the POSIX4 real-time signal number to be used for the operation. {signal_number} ranges from ACE_SIGRTMIN to ACE_SIGRTMAX. This argument is a no-op on non-POSIX4 systems. Definition at line 491 of file Asynch_IO.cpp. References ACE_Asynch_Write_File_Impl::write(). 
 00498 {
00499   return this->implementation_->write (message_block,
00500                                        bytes_to_write,
00501                                        offset,
00502                                        offset_high,
00503                                        act,
00504                                        priority,
00505                                        signal_number);
00506 }
 | 
| 
 | ||||||||||||||||||||||||||||||||
| Same as above but with gather support, through chaining of composite message blocks using the continuation field. 
 Definition at line 510 of file Asynch_IO.cpp. References ACE_Asynch_Write_File_Impl::writev(). 
 00517 {
00518   return this->implementation_->writev (message_block,
00519                                         bytes_to_write,
00520                                         offset,
00521                                         offset_high,
00522                                         act,
00523                                         priority,
00524                                         signal_number);
00525 }
 | 
| 
 | 
| Implementation object. 
 Reimplemented from ACE_Asynch_Write_Stream. Definition at line 748 of file Asynch_IO.h. | 
 1.3.6
 
1.3.6