diff options
author | mitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-08-15 15:49:02 +0000 |
---|---|---|
committer | mitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-08-15 15:49:02 +0000 |
commit | 239bbb24717f2dc1e9d40b45cb59339076bdc4df (patch) | |
tree | 0a1115f1046fcc2c35626776f6d4ec85bcf69d6d /TAO/tao/Transport.h | |
parent | 5a02c6844beee521f958efec7cc11b712f1d4160 (diff) | |
download | ATCD-239bbb24717f2dc1e9d40b45cb59339076bdc4df.tar.gz |
Tue Aug 15 14:56:35 UTC 2006 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'TAO/tao/Transport.h')
-rw-r--r-- | TAO/tao/Transport.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/TAO/tao/Transport.h b/TAO/tao/Transport.h index a563cc42727..ea5623072c3 100644 --- a/TAO/tao/Transport.h +++ b/TAO/tao/Transport.h @@ -680,11 +680,17 @@ protected: ACE_Time_Value *max_wait_time); /// Queue a message for @a message_block - int queue_message_i (const ACE_Message_Block *message_block); + /// @param max_wait_time The maximum time that the operation can + /// block, used in the implementation of timeouts. + int queue_message_i (const ACE_Message_Block *message_block, + ACE_Time_Value *max_wait_time); public: /// Format and queue a message for @a stream - int format_queue_message (TAO_OutputCDR &stream); + /// @param max_wait_time The maximum time that the operation can + /// block, used in the implementation of timeouts. + int format_queue_message (TAO_OutputCDR &stream, + ACE_Time_Value *max_wait_time); /// Send a message block chain, int send_message_block_chain (const ACE_Message_Block *message_block, |