TAO_RTCORBA
2.0.8
|
RTCORBA ORB initializer. More...
#include <RT_ORBInitializer.h>
Public Types | |
enum | { TAO_PRIORITY_MAPPING_CONTINUOUS, TAO_PRIORITY_MAPPING_LINEAR, TAO_PRIORITY_MAPPING_DIRECT } |
Priority mapping types. More... | |
enum | { TAO_NETWORK_PRIORITY_MAPPING_LINEAR } |
enum | TAO_RTCORBA_DT_LifeSpan { TAO_RTCORBA_DT_INFINITIVE, TAO_RTCORBA_DT_IDLE, TAO_RTCORBA_DT_FIXED } |
Public Member Functions | |
TAO_RT_ORBInitializer (int priority_mapping_type, int network_priority_mapping_type, int ace_sched_policy, long sched_policy, long scope_policy, TAO_RT_ORBInitializer::TAO_RTCORBA_DT_LifeSpan lifespan, ACE_Time_Value const &dynamic_thread_time) | |
virtual void | pre_init (PortableInterceptor::ORBInitInfo_ptr info) |
virtual void | post_init (PortableInterceptor::ORBInitInfo_ptr info) |
Private Member Functions | |
void | register_policy_factories (PortableInterceptor::ORBInitInfo_ptr info) |
Register RTCORBA policy factories. | |
Private Attributes | |
PortableInterceptor::PolicyFactory_var | policy_factory_ |
Instance of the RTCorba policy factory. | |
int const | priority_mapping_type_ |
Priority mapping type. | |
int const | network_priority_mapping_type_ |
Network Priority mapping type. | |
int const | ace_sched_policy_ |
Scheduling policy. | |
long const | sched_policy_ |
Scheduling policy flag. | |
long const | scope_policy_ |
Scheduling scope flag. | |
TAO_RT_ORBInitializer::TAO_RTCORBA_DT_LifeSpan | lifespan_ |
Dynamic thread lifespan policy. | |
ACE_Time_Value const | dynamic_thread_time_ |
Dynamic thread time. |
anonymous enum |
Lifespan of the dynamic threads TAO_RTCORBA_DT_INFINITIVE When the Dynamic Thread is created it will run forever TAO_RTCORBA_DT_IDLE When the Dynamic Thread is created it will run until it has been idle for the specified amount of time TAO_RTCORBA_DT_FIXED When the Dynamic Thread is created it will run for the specified fix amount of time
TAO_RT_ORBInitializer::TAO_RT_ORBInitializer | ( | int | priority_mapping_type, |
int | network_priority_mapping_type, | ||
int | ace_sched_policy, | ||
long | sched_policy, | ||
long | scope_policy, | ||
TAO_RT_ORBInitializer::TAO_RTCORBA_DT_LifeSpan | lifespan, | ||
ACE_Time_Value const & | dynamic_thread_time | ||
) |
void TAO_RT_ORBInitializer::post_init | ( | PortableInterceptor::ORBInitInfo_ptr | info | ) | [virtual] |
void TAO_RT_ORBInitializer::pre_init | ( | PortableInterceptor::ORBInitInfo_ptr | info | ) | [virtual] |
void TAO_RT_ORBInitializer::register_policy_factories | ( | PortableInterceptor::ORBInitInfo_ptr | info | ) | [private] |
Register RTCORBA policy factories.
int const TAO_RT_ORBInitializer::ace_sched_policy_ [private] |
Scheduling policy.
Scheduling policy specified by the user through the -ORBSchedPolicy option. This value is typically used by functions like ACE_OS::thr_setprio() and ACE_Sched_Params::priority_min(). Legal values are ACE_SCHED_RR, ACE_SCHED_FIFO, and ACE_SCHED_OTHER.
ACE_Time_Value const TAO_RT_ORBInitializer::dynamic_thread_time_ [private] |
Dynamic thread time.
When using thread pool a certain number of dynamic threads can be created. By default these threads are created when needed but never end. Optionally a time can be specified
Dynamic thread lifespan policy.
int const TAO_RT_ORBInitializer::network_priority_mapping_type_ [private] |
Network Priority mapping type.
PortableInterceptor::PolicyFactory_var TAO_RT_ORBInitializer::policy_factory_ [private] |
Instance of the RTCorba policy factory.
The RTCorba policy factory is stateless and reentrant, so share a single instance between all ORBs.
int const TAO_RT_ORBInitializer::priority_mapping_type_ [private] |
Priority mapping type.
long const TAO_RT_ORBInitializer::sched_policy_ [private] |
Scheduling policy flag.
Scheduling policy specified by the user through the -ORBSchedPolicy option. This value is typically used by ACE thread creation functions. Legal values are THR_SCHED_RR, THR_SCHED_FIFO, and THR_SCHED_DEFAULT.
long const TAO_RT_ORBInitializer::scope_policy_ [private] |
Scheduling scope flag.
Scheduling policy specified by the user through the -ORBScopePolicy option. This value is typically used by ACE thread creation functions. Legal values are THR_SCOPE_SYSTEM and THR_SCOPE_PROCESS.