summaryrefslogtreecommitdiff
path: root/TAO/tao/Invocation.h
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-02 02:29:10 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-02 02:29:10 +0000
commit24abdec6da1f952e8e9c1f0e9427fef6d5566dab (patch)
tree7a4be4edf3c98e54e0bc2d003a1e4303e2367027 /TAO/tao/Invocation.h
parent27f36e2bb4afdb3329725c90871b823633b3dce0 (diff)
downloadATCD-24abdec6da1f952e8e9c1f0e9427fef6d5566dab.tar.gz
ChangeLogTag:Tue Jun 1 19:48:12 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Invocation.h')
-rw-r--r--TAO/tao/Invocation.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/TAO/tao/Invocation.h b/TAO/tao/Invocation.h
index 90900bed917..ca106f437c7 100644
--- a/TAO/tao/Invocation.h
+++ b/TAO/tao/Invocation.h
@@ -31,6 +31,7 @@
#include "tao/ORB_Core.h"
#include "tao/GIOP.h"
#include "tao/Any.h"
+#include "tao/Reply_Dispatcher.h"
struct TAO_Exception_Data;
class TAO_Profile;
@@ -151,7 +152,7 @@ protected:
const char *opname_;
// Name of the operation being invoked.
- CORBA::ULong my_request_id_;
+ CORBA::ULong request_id_;
// Request ID of this operation.
char buffer [ACE_CDR::DEFAULT_BUFSIZE];
@@ -227,7 +228,10 @@ private:
private:
TAO_InputCDR inp_stream_;
- // Stream into which the request is placed.
+ // Stream into which the reply is placed.
+
+ TAO_Synch_Reply_Dispatcher rd_;
+ // Reply dispatcher for the current synchronous invocation.
};
class TAO_Export TAO_GIOP_Oneway_Invocation : public TAO_GIOP_Invocation