diff options
author | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-10-28 18:31:01 +0000 |
---|---|---|
committer | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-10-28 18:31:01 +0000 |
commit | cdb6fd66611283a0314ab23e08472d11dae4f0e4 (patch) | |
tree | fd6ae8c3db752254802dfaafd1543974a4741e47 /TAO/tao/Muxed_TMS.h | |
parent | f984aa2bff444f381570d2f97ac9ba958926fb6b (diff) | |
download | ATCD-cdb6fd66611283a0314ab23e08472d11dae4f0e4.tar.gz |
ChangeLogTag:Tue Oct 28 12:02:47 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Muxed_TMS.h')
-rw-r--r-- | TAO/tao/Muxed_TMS.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/TAO/tao/Muxed_TMS.h b/TAO/tao/Muxed_TMS.h index 8c789b773b5..5712a31a5e7 100644 --- a/TAO/tao/Muxed_TMS.h +++ b/TAO/tao/Muxed_TMS.h @@ -15,17 +15,16 @@ #define TAO_MUXED_TMS_H #include /**/ "ace/pre.h" - -#include "tao/Transport_Mux_Strategy.h" +#include "ace/Hash_Map_Manager_T.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "ace/Functor.h" -#include "ace/Hash_Map_Manager_T.h" #include "ace/Null_Mutex.h" +#include "tao/Transport_Mux_Strategy.h" + class TAO_ORB_Core; class TAO_Pluggable_Reply_Params; @@ -62,8 +61,8 @@ public: virtual int dispatch_reply (TAO_Pluggable_Reply_Params ¶ms); - virtual int idle_after_send (void); - virtual int idle_after_reply (void); + virtual bool idle_after_send (void); + virtual bool idle_after_reply (void); virtual void connection_closed (void); protected: @@ -79,14 +78,14 @@ protected: TAO_Reply_Dispatcher *, ACE_Hash <CORBA::ULong>, ACE_Equal_To <CORBA::ULong>, - ACE_Null_Mutex> REQUEST_DISPATCHER_TABLE; + ACE_Null_Mutex> + REQUEST_DISPATCHER_TABLE; /// Table of <Request ID, Reply Dispatcher> pairs. REQUEST_DISPATCHER_TABLE dispatcher_table_; protected: int clear_cache (void); - }; #include /**/ "ace/post.h" |