#include "tao/Muxed_TMS.h"#include "tao/Reply_Dispatcher.h"#include "tao/debug.h"#include "tao/Transport.h"#include "tao/ORB_Core.h"#include "tao/Client_Strategy_Factory.h"
Go to the source code of this file.
Functions | |
| ACE_RCSID (tao, Muxed_TMS,"$Id: Muxed_TMS.cpp 85001 2009-03-31 10:06:45Z msmit $") 1 TAO_Muxed_TMS | |
| ACE_RCSID | ( | tao | , | |
| Muxed_TMS | , | |||
| "$Id: Muxed_TMS.cpp 85001 2009-03-31 10:06:45Z msmit $" | ||||
| ) |
Definition at line 10 of file Muxed_TMS.cpp.
00012 : Muxed_TMS.cpp 85001 2009-03-31 10:06:45Z msmit $") 00013 00014 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00015 00016 TAO_Muxed_TMS::TAO_Muxed_TMS (TAO_Transport *transport) 00017 : TAO_Transport_Mux_Strategy (transport) 00018 , lock_ (0) 00019 , request_id_generator_ (0) 00020 , orb_core_ (transport->orb_core ()) 00021 , dispatcher_table_ (this->orb_core_->client_factory ()->reply_dispatcher_table_size ()) 00022 { 00023 this->lock_ = 00024 this->orb_core_->client_factory ()->create_transport_mux_strategy_lock (); 00025 }
1.6.1