2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
6 namespace Portable_Server
8 ACE_INLINE ::PortableServer::ThreadPolicyValue
9 Cached_Policies::thread () const
14 ACE_INLINE ::PortableServer::LifespanPolicyValue
15 Cached_Policies::lifespan () const
17 return this->lifespan_;
20 ACE_INLINE ::PortableServer::IdUniquenessPolicyValue
21 Cached_Policies::id_uniqueness () const
23 return this->id_uniqueness_;
26 ACE_INLINE ::PortableServer::IdAssignmentPolicyValue
27 Cached_Policies::id_assignment () const
29 return this->id_assignment_;
32 ACE_INLINE ::PortableServer::ImplicitActivationPolicyValue
33 Cached_Policies::implicit_activation () const
35 return this->implicit_activation_;
38 ACE_INLINE ::PortableServer::ServantRetentionPolicyValue
39 Cached_Policies::servant_retention () const
41 return this->servant_retention_;
44 ACE_INLINE ::PortableServer::RequestProcessingPolicyValue
45 Cached_Policies::request_processing () const
47 return this->request_processing_;
50 ACE_INLINE Cached_Policies::PriorityModel
51 Cached_Policies::priority_model () const
53 return this->priority_model_;
56 ACE_INLINE CORBA::Short
57 Cached_Policies::server_priority () const
59 return this->server_priority_;
63 Cached_Policies::priority_model (PriorityModel priority_model)
65 this->priority_model_ = priority_model;
69 Cached_Policies::server_priority (CORBA::Short priority)
71 this->server_priority_ = priority;
74 ACE_INLINE Cached_Policies::NetworkPriorityModel
75 Cached_Policies::network_priority_model () const
77 return this->network_priority_model_;
80 ACE_INLINE CORBA::Long
81 Cached_Policies::request_diffserv_codepoint () const
83 return this->request_diffserv_codepoint_;
86 ACE_INLINE CORBA::Long
87 Cached_Policies::reply_diffserv_codepoint () const
89 return this->reply_diffserv_codepoint_;
93 Cached_Policies::network_priority_model (
94 NetworkPriorityModel network_priority_model)
96 this->network_priority_model_ = network_priority_model;
100 Cached_Policies::request_diffserv_codepoint (
101 CORBA::Long diffserv_codepoint)
103 this->request_diffserv_codepoint_ = diffserv_codepoint;
107 Cached_Policies::reply_diffserv_codepoint (CORBA::Long diffserv_codepoint)
109 this->reply_diffserv_codepoint_ = diffserv_codepoint;
113 Cached_Policies::implicit_activation (PortableServer::ImplicitActivationPolicyValue value)
115 this->implicit_activation_ = value;
120 TAO_END_VERSIONED_NAMESPACE_DECL