#include <Synch_Queued_Message.h>
Inheritance diagram for TAO_Synch_Queued_Message:
Public Methods | |
TAO_Synch_Queued_Message (const ACE_Message_Block *contents) | |
Constructor. More... | |
virtual | ~TAO_Synch_Queued_Message (void) |
Destructor. More... | |
const ACE_Message_Block * | current_block (void) const |
virtual size_t | message_length (void) const |
virtual int | all_data_sent (void) const |
Return 1 if all the data has been sent. More... | |
virtual void | fill_iov (int iovcnt_max, int &iovcnt, iovec iov[]) const |
Fill up an io vector using the connects of the message. More... | |
virtual void | bytes_transferred (size_t &byte_count) |
Update the internal state, data has been sent. More... | |
virtual void | destroy (void) |
Reclaim resources. More... | |
Private Attributes | |
ACE_Message_Block * | contents_ |
The contents of the message. More... | |
ACE_Message_Block * | current_block_ |
The current message block. More... |
Reliable requests block the sending thread until the message is sent, likewise, the sending thread must be informed if the connection is closed or the message times out.
In contrast oneway (and AMI) requests sent with the SYNC_NONE policy are simple discarded if the connection fails or they timeout.
Another important difference is the management of the data buffer: one SYNC_NONE messages the buffer is immediately copied into a newly allocated buffer, and must be deallocated. Other types of requests use the memory allocated by the sending thread.
|
Constructor.
|
|
Destructor.
|
|
Return 1 if all the data has been sent.
Reimplemented from TAO_Queued_Message. |
|
Update the internal state, data has been sent. After the TAO_Transport class completes a successful (or partially successful) I/O operation it must update the state of all the messages queued. This callback method is used by each message to update its state and determine if all the data has been sent already.
Reimplemented from TAO_Queued_Message. |
|
|
|
Reclaim resources. Reliable messages are allocated from the stack, thus they do not be deallocated. Asynchronous (SYNC_NONE) messages are allocated from the heap (or a pool), they need to be reclaimed explicitly. Reimplemented from TAO_Queued_Message. |
|
Fill up an io vector using the connects of the message. Different versions of this class represent the message using either a single buffer, or a message block. This method allows a derived class to fill up the contents of an io vector, the TAO_Transport class uses this method to group as many messages as possible in an iovector before sending them to the OS I/O subsystem.
Reimplemented from TAO_Queued_Message. |
|
Implement the Template Methods from TAO_Queued_Message Reimplemented from TAO_Queued_Message. |
|
The contents of the message. The message is normally generated by a TAO_OutputCDR stream. The application marshals the payload, possibly generating a chain of message block connected via the 'cont()' field. |
|
The current message block. The message may be set in multiple writev() operations. This point keeps track of the next message to send out. |