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.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/TAO/tao/Transport_Mux_Strategy.h b/TAO/tao/Transport_Mux_Strategy.h
index 955b1f8a557..ef0b05140f0 100644
--- a/TAO/tao/Transport_Mux_Strategy.h
+++ b/TAO/tao/Transport_Mux_Strategy.h
@@ -68,12 +68,14 @@ public:
virtual int dispatch_reply (TAO_Pluggable_Reply_Params &params) = 0;
/// Request has been just sent, but the reply is not received. Idle
- /// the transport now.
- virtual int idle_after_send (void) = 0;
+ /// the transport now. The return value indicates whether idling was
+ /// successful or not.
+ virtual bool idle_after_send (void) = 0;
/// Request is sent and the reply is received. Idle the transport
- /// now.
- virtual int idle_after_reply (void) = 0;
+ /// now. The return value indicates whether idling was successful or
+ /// not.
+ virtual bool idle_after_reply (void) = 0;
/// The transport object has closed the connection, inform all Reply
/// dispatchers and waiting strategies.