summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport_Mux_Strategy.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Transport_Mux_Strategy.h')
-rw-r--r--TAO/tao/Transport_Mux_Strategy.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/TAO/tao/Transport_Mux_Strategy.h b/TAO/tao/Transport_Mux_Strategy.h
index 6f729a1db23..3fa8ba4b5dc 100644
--- a/TAO/tao/Transport_Mux_Strategy.h
+++ b/TAO/tao/Transport_Mux_Strategy.h
@@ -55,9 +55,6 @@ public:
/// invocation.
virtual CORBA::ULong request_id (void) = 0;
- // = Bind and Find methods for the <Request ID, ReplyDispatcher>
- // pairs.
-
/// Bind the dispatcher with the request id. Commonalities in the
/// derived class implementations is kept here.
virtual int bind_dispatcher (CORBA::ULong request_id,
@@ -72,6 +69,11 @@ public:
*/
virtual int unbind_dispatcher (CORBA::ULong request_id) = 0;
+ /**
+ * Dispatch a reply timeout for request @a request_id
+ **/
+ virtual int reply_timed_out (CORBA::ULong request_id) = 0;
+
/// Dispatch the reply for <request_id>, cleanup any resources
/// allocated for that request.
virtual int dispatch_reply (TAO_Pluggable_Reply_Params &params) = 0;