summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-10-10 06:48:19 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-10-10 06:48:19 +0000
commit16fbccaf4cb5b573a1cb2ee898fb1ff726023307 (patch)
treea885a4bbdece25238674c7617edea46dc2f8625a /TAO/tao/Transport.h
parent8df1a062a2dd2380715caeb44ceaac0074fbf936 (diff)
downloadATCD-16fbccaf4cb5b573a1cb2ee898fb1ff726023307.tar.gz
ChangeLogTag: Mon Oct 10 06:48:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Transport.h')
-rw-r--r--TAO/tao/Transport.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/TAO/tao/Transport.h b/TAO/tao/Transport.h
index d801ef78eff..b8757c61778 100644
--- a/TAO/tao/Transport.h
+++ b/TAO/tao/Transport.h
@@ -858,10 +858,16 @@ private:
ACE_Time_Value *max_wait_time);
/// Send a reply message, i.e. do not block until the message is on
- /// the wire, but just return after adding them to the queue.
+ /// the wire, but just return after adding them to the queue.
int send_reply_message_i (const ACE_Message_Block *message_block,
ACE_Time_Value *max_wait_time);
+ /// Send an asynchronous message, i.e. do not block until the message is on
+ /// the wire
+ int send_asynchronous_message_i (TAO_Stub *stub,
+ const ACE_Message_Block *message_block,
+ ACE_Time_Value *max_wait_time);
+
/// A helper method used by send_synchronous_message_i() and
/// send_reply_message_i(). Reusable code that could be used by both
/// the methods.