diff options
author | alex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-04 05:38:53 +0000 |
---|---|---|
committer | alex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-04 05:38:53 +0000 |
commit | 6b625cdd52ac721cee1daf1575aeb5e1d1ff00e4 (patch) | |
tree | 3d47768fdfd7ba468d6ea4d954830898e3fc1b76 /TAO/tao | |
parent | f729ef280b4eb3567523ae36242e6392e7a45aae (diff) | |
download | ATCD-6b625cdd52ac721cee1daf1575aeb5e1d1ff00e4.tar.gz |
Removed dead comment.
Diffstat (limited to 'TAO/tao')
-rw-r--r-- | TAO/tao/Pluggable.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/TAO/tao/Pluggable.h b/TAO/tao/Pluggable.h index 9a0e0bdb159..13edd52edac 100644 --- a/TAO/tao/Pluggable.h +++ b/TAO/tao/Pluggable.h @@ -137,30 +137,28 @@ public: TAO_ORB_Core *orb_core (void) const; // Get it. - // = Get and set methods for thr RMS object. + // = Get and set methods for thr TMS object. - // void rms (TAO_Transport_Mux_Strategy *rms); - // Set the RMS object. + // void tms(TAO_Transport_Mux_Strategy *rms); + // Set the TMSobject. - TAO_Transport_Mux_Strategy * rms (void) const; - // Get the RMS used by this Transport object. + TAO_Transport_Mux_Strategy *tms (void) const; + // Get the TMS used by this Transport object. TAO_Wait_Strategy *wait_strategy (void) const; // Return the Wait strategy used by the Transport. CORBA::ULong request_id (void); - // Get request id for the current invocation from the RMS object. + // Get request id for the current invocation from the TMSobject. int bind_reply_dispatcher (CORBA::ULong request_id, TAO_Reply_Dispatcher *rd); - // Bind the reply dispatcher with the RMS object. + // Bind the reply dispatcher with the TMS object. virtual int wait_for_reply (void); // Wait for the reply depending on the strategy. virtual int handle_client_input (int block = 0); - // @@ Make this pure virtual !!! (alex) - // Read and handle the reply. Returns 0 when there is Short Read on // the connection. Returns 1 when the full reply is read and // handled. Returns -1 on errors. |