Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / RTCORBA / Thread_Pool.inl
blob8b37bbb0a0b38d9593584bbda8e792b3f6a2fabb
1 // -*- C++ -*-
2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4 ACE_INLINE
5 TAO_Thread_Lane &
6 TAO_Thread_Pool_Threads::lane () const
8   return this->lane_;
11 ACE_INLINE
12 CORBA::ULong
13 TAO_Thread_Lane::id () const
15   return this->id_;
18 ACE_INLINE
19 TAO_Thread_Pool &
20 TAO_Thread_Lane::pool () const
22   return this->pool_;
25 ACE_INLINE
26 CORBA::Short
27 TAO_Thread_Lane::lane_priority () const
29   return this->lane_priority_;
32 ACE_INLINE
33 CORBA::Short
34 TAO_Thread_Lane::native_priority () const
36   return this->native_priority_;
39 ACE_INLINE
40 CORBA::ULong
41 TAO_Thread_Lane::static_threads () const
43   return this->static_threads_number_;
46 ACE_INLINE
47 CORBA::ULong
48 TAO_Thread_Lane::dynamic_threads () const
50   return this->dynamic_threads_number_;
53 ACE_INLINE
54 TAO_Thread_Lane_Resources &
55 TAO_Thread_Lane::resources ()
57   return this->resources_;
60 ACE_INLINE
61 TAO_RT_ORBInitializer::TAO_RTCORBA_DT_LifeSpan
62 TAO_Thread_Lane::lifespan () const
64   return this->lifespan_;
67 ACE_INLINE
68 ACE_Time_Value const &
69 TAO_Thread_Lane::dynamic_thread_time () const
71   return this->dynamic_thread_time_;
74 ACE_INLINE
75 bool
76 TAO_Thread_Pool::with_lanes () const
78   return this->with_lanes_;
81 ACE_INLINE
82 TAO_Thread_Pool_Manager &
83 TAO_Thread_Pool::manager () const
85   return this->manager_;
88 ACE_INLINE
89 CORBA::ULong
90 TAO_Thread_Pool::id () const
92   return this->id_;
95 ACE_INLINE
96 CORBA::ULong
97 TAO_Thread_Pool::stack_size () const
99   return this->stack_size_;
102 ACE_INLINE
103 CORBA::Boolean
104 TAO_Thread_Pool::allow_borrowing () const
106   return this->allow_borrowing_;
109 ACE_INLINE
110 CORBA::Boolean
111 TAO_Thread_Pool::allow_request_buffering () const
113   return this->allow_request_buffering_;
116 ACE_INLINE
117 CORBA::ULong
118 TAO_Thread_Pool::max_buffered_requests () const
120   return this->max_buffered_requests_;
123 ACE_INLINE
124 CORBA::ULong
125 TAO_Thread_Pool::max_request_buffer_size () const
127   return this->max_request_buffer_size_;
130 ACE_INLINE
131 TAO_Thread_Lane **
132 TAO_Thread_Pool::lanes ()
134   return this->lanes_;
137 ACE_INLINE
138 CORBA::ULong
139 TAO_Thread_Pool::number_of_lanes () const
141   return this->number_of_lanes_;
144 TAO_END_VERSIONED_NAMESPACE_DECL