#include <Object.h>
Inheritance diagram for TAO_Notify_Object:
Public Types | |
typedef CORBA::Long | ID |
Id for Objects. | |
Public Member Functions | |
virtual | ~TAO_Notify_Object (void) |
Destructor. | |
ID | id (void) const |
This Object's ID. | |
virtual CORBA::Object_ptr | activate (PortableServer::Servant servant) |
Activate. | |
virtual CORBA::Object_ptr | activate (PortableServer::Servant servant, CORBA::Long id) |
Activate with existing id. | |
void | deactivate (void) |
Deactivate. | |
int | has_shutdown (void) |
Have we been shutdown. returns 1 if shutdown. | |
void | execute_task (TAO_Notify_Method_Request &method_request) |
CORBA::Object_ptr | ref (void) |
Get CORBA Ref. | |
virtual void | set_qos (const CosNotification::QoSProperties &qos) |
Set the QoS Properties. | |
CosNotification::QoSProperties * | get_qos (void) |
Get the QoS Properties. | |
bool | find_qos_property_value (const char *name, CosNotification::PropertyValue &value) const |
virtual TAO_Notify_Timer * | timer (void) |
Obtain the Timer manager associated with this object. | |
TAO_Notify_Event_Manager & | event_manager (void) |
Accessor for the Event Manager. | |
virtual int | shutdown (void) |
shutdown. Returns 1 ifif the shutdown was already run once before. | |
virtual void | load_attrs (const TAO_Notify::NVPList &attrs) |
TAO_Notify_Worker_Task * | get_worker_task (void) |
Allow access to the underlying worker task. | |
Protected Member Functions | |
TAO_Notify_Object (void) | |
Constructor. | |
void | initialize (TAO_Notify_Object *parent) |
Init this object with data from . | |
void | inherit_poas (TAO_Notify_Object &parent) |
Uses the poas from the supplied object. | |
void | adopt_poa (TAO_Notify_POA_Helper *single) |
Adopts the supplied poa as all are poas. | |
void | set_primary_as_proxy_poa () |
Changes the primary poa to the current proxy poa. | |
TAO_Notify_POA_Helper * | proxy_poa (void) |
Accessor for the proxy_poa_. | |
TAO_Notify_POA_Helper * | object_poa (void) |
Accessor for the object_poa_. | |
TAO_Notify_POA_Helper * | poa (void) |
Get the POA assigned to us. | |
void | set_event_manager (TAO_Notify_Event_Manager *event_manager) |
void | set_admin_properties (TAO_Notify_AdminProperties *admin_properties) |
TAO_Notify_AdminProperties & | admin_properties (void) |
Accessor for the Admin Properties. | |
virtual void | qos_changed (const TAO_Notify_QoSProperties &qos_properties) |
Notification that can be overridden by subclasses to be informed that have been modified. | |
virtual void | save_attrs (TAO_Notify::NVPList &attrs) |
Protected Attributes | |
TAO_Notify_QoSProperties | qos_properties_ |
= Protected data members. QoS Properties. | |
TAO_SYNCH_MUTEX | lock_ |
The mutex to serialize access to state variables. | |
Private Member Functions | |
void | set_worker_task (TAO_Notify_Worker_Task *worker_task) |
Set Worker Task. This object assume ownership of the set object. | |
void | set_proxy_poa (TAO_Notify_POA_Helper *proxy_poa) |
Setting the proxy_poa_ gives ownership to this class. | |
void | set_object_poa (TAO_Notify_POA_Helper *object_poa) |
Setting the object_poa_ gives ownership to this class. | |
void | set_poa (TAO_Notify_POA_Helper *object_poa) |
Setting the object_poa_ gives ownership to this class. | |
void | shutdown_worker_task (void) |
Shutdown the current worker task and delete it if we own it. | |
void | destroy_proxy_poa (void) |
Shutdown the current proxy poa. | |
void | destroy_object_poa (void) |
Shutdown the current object poa. | |
void | destroy_poa (void) |
Shutdown the current poa. | |
Private Attributes | |
TAO_Notify_POA_Helper * | poa_ |
The POA in which the object is activated. | |
TAO_Notify_POA_Helper * | proxy_poa_ |
The POA in which the proxys are activated. | |
bool | own_proxy_poa_ |
TAO_Notify_POA_Helper * | object_poa_ |
The POA in which the object's children are activated. | |
bool | own_object_poa_ |
ID | id_ |
Id assigned to this object. | |
TAO_Notify_Refcountable_Guard_T< TAO_Notify_Event_Manager > | event_manager_ |
The event manager. | |
TAO_Notify_AdminProperties::Ptr | admin_properties_ |
Admin Properties. | |
TAO_Notify_Worker_Task::Ptr | worker_task_ |
Worker Task. | |
bool | own_worker_task_ |
bool | shutdown_ |
Are we shutdown (i,e. scheduled for destroy). | |
Friends | |
class | TAO_Notify_Builder |
class | TAO_Notify_RT_Builder |
Definition at line 47 of file Object.h.
|
|
Destructor.
Definition at line 35 of file Object.cpp. References ACE_DEBUG, destroy_object_poa(), destroy_poa(), destroy_proxy_poa(), LM_DEBUG, and TAO_debug_level.
00036 { 00037 if (TAO_debug_level > 2 ) 00038 ACE_DEBUG ((LM_DEBUG,"object:%x destroyed\n", this )); 00039 00040 this->destroy_proxy_poa (); 00041 this->destroy_object_poa (); 00042 this->destroy_poa (); 00043 } |
|
Constructor.
Definition at line 21 of file Object.cpp. References ACE_DEBUG, LM_DEBUG, and TAO_debug_level.
00022 : poa_ (0) 00023 , proxy_poa_ (0) 00024 , own_proxy_poa_ (false) 00025 , object_poa_ (0) 00026 , own_object_poa_ (false) 00027 , id_ (0) 00028 , own_worker_task_ (false) 00029 , shutdown_ (false) 00030 { 00031 if (TAO_debug_level > 2 ) 00032 ACE_DEBUG ((LM_DEBUG,"object:%x created\n", this )); 00033 } |
|
Activate with existing id.
Reimplemented in TAO_Notify_Proxy, and TAO_Notify_RT_StructuredProxyPushSupplier. Definition at line 78 of file Object.cpp. References TAO_Notify_POA_Helper::activate_with_id().
00081 { 00082 this->id_ = id; 00083 return this->poa_->activate_with_id (servant, this->id_); 00084 } |
|
Activate.
Reimplemented in TAO_Notify_Proxy, and TAO_Notify_RT_StructuredProxyPushSupplier. Definition at line 71 of file Object.cpp. References TAO_Notify_POA_Helper::activate(). Referenced by TAO_Notify_Proxy::activate(), TAO_Notify_EventChannelFactory::activate_self(), TAO_Notify_Builder::build_consumer_admin(), TAO_Notify_Builder::build_event_channel(), and TAO_Notify_Builder::build_supplier_admin().
|
|
Accessor for the Admin Properties.
Definition at line 91 of file Object.inl. References ACE_ASSERT. Referenced by TAO_Notify_ProxySupplier::connect(), TAO_Notify_ProxyConsumer::connect(), TAO_Notify_ProxySupplier::disconnect(), TAO_Notify_ProxyConsumer::disconnect(), TAO_Notify_EventChannel::get_admin(), TAO_Notify_EventChannel::load_attrs(), TAO_Notify_ProxyPushConsumer::push(), TAO_Notify_CosEC_ProxyPushConsumer::push(), TAO_Notify_StructuredProxyPushConsumer::push_structured_event(), TAO_Notify_SequenceProxyPushConsumer::push_structured_events(), and TAO_Notify_EventChannel::set_admin().
00092 { 00093 ACE_ASSERT( this->admin_properties_.get() != 0 ); 00094 return *this->admin_properties_; 00095 } |
|
Adopts the supplied poa as all are poas.
Definition at line 36 of file Object.inl. References ACE_ASSERT, set_object_poa(), set_poa(), and set_proxy_poa(). Referenced by TAO_Notify_EventChannelFactory::init().
00037 { 00038 ACE_ASSERT( single != 0 ); 00039 this->set_proxy_poa( single ); 00040 this->set_object_poa( single ); 00041 this->set_poa( single ); 00042 00043 // Maintain ownership of the poa 00044 } |
|
Deactivate.
Reimplemented in TAO_Notify_Proxy. Definition at line 88 of file Object.cpp. References ACE_DEBUG, TAO_Notify_POA_Helper::deactivate(), LM_DEBUG, and TAO_debug_level. Referenced by shutdown().
00089 { 00090 try 00091 { 00092 this->poa_->deactivate (this->id_); 00093 } 00094 catch (const CORBA::Exception& ex) 00095 { 00096 // Do not propagate any exceptions 00097 if (TAO_debug_level > 2) 00098 { 00099 ex._tao_print_exception ("(%P|%t)\n"); 00100 ACE_DEBUG ((LM_DEBUG, "Could not deactivate object %d\n", this->id_)); 00101 } 00102 } 00103 } |
|
Shutdown the current object poa.
Definition at line 172 of file Object.cpp. References TAO_Notify_POA_Helper::destroy(), object_poa_, own_object_poa_, proxy_poa_, and TAO_debug_level. Referenced by set_object_poa(), and ~TAO_Notify_Object().
00173 { 00174 if (this->object_poa_ != 0) 00175 { 00176 try 00177 { 00178 if ( this->object_poa_ == this->proxy_poa_ ) this->proxy_poa_ = 0; 00179 if ( this->object_poa_ == this->poa_ ) this->poa_ = 0; 00180 00181 if ( this->own_object_poa_ == true ) 00182 { 00183 this->own_object_poa_ = false; 00184 ACE_Auto_Ptr< TAO_Notify_POA_Helper > aop( object_poa_ ); 00185 this->object_poa_->destroy (); 00186 } 00187 this->object_poa_ = 0; 00188 } 00189 catch (const CORBA::Exception& ex) 00190 { 00191 if (TAO_debug_level > 2) 00192 ex._tao_print_exception ("Proxy shutdown error (%P|%t)\n"); 00193 } 00194 } 00195 } |
|
Shutdown the current poa.
Definition at line 198 of file Object.cpp. Referenced by ~TAO_Notify_Object().
00199 { 00200 this->poa_ = 0; 00201 } |
|
Shutdown the current proxy poa.
Definition at line 146 of file Object.cpp. References TAO_Notify_POA_Helper::destroy(), object_poa_, own_proxy_poa_, proxy_poa_, and TAO_debug_level. Referenced by set_proxy_poa(), and ~TAO_Notify_Object().
00147 { 00148 if (this->proxy_poa_ != 0) 00149 { 00150 try 00151 { 00152 if ( this->proxy_poa_ == this->object_poa_ ) this->object_poa_ = 0; 00153 if ( this->proxy_poa_ == this->poa_ ) this->poa_ = 0; 00154 00155 if ( this->own_proxy_poa_ == true ) 00156 { 00157 this->own_proxy_poa_ = false; 00158 ACE_Auto_Ptr< TAO_Notify_POA_Helper > app( proxy_poa_ ); 00159 this->proxy_poa_->destroy (); 00160 } 00161 this->proxy_poa_ = 0; 00162 } 00163 catch (const CORBA::Exception& ex) 00164 { 00165 if (TAO_debug_level > 2) 00166 ex._tao_print_exception ("Proxy shutdown error (%P|%t)\n"); 00167 } 00168 } 00169 } |
|
Accessor for the Event Manager.
Definition at line 84 of file Object.inl. References ACE_ASSERT, and event_manager_. Referenced by TAO_Notify_ProxySupplier::connect(), TAO_Notify_ProxyConsumer::connect(), TAO_Notify_ProxySupplier::disconnect(), TAO_Notify_ProxyConsumer::disconnect(), TAO_Notify_Method_Request_Lookup::execute_i(), TAO_Notify_EventChannel::init(), TAO_Notify_ProxyConsumer_T< SERVANT_TYPE >::offer_change(), TAO_Notify_EventChannel::shutdown(), and TAO_Notify_ProxySupplier_T< SERVANT_TYPE >::subscription_change().
00085 { 00086 ACE_ASSERT( this->event_manager_.get() != 0 ); 00087 return *this->event_manager_; 00088 } |
|
Definition at line 14 of file Object.inl. Referenced by TAO_Notify_ProxySupplier::deliver(), TAO_Notify::Routing_Slip::dispatch(), TAO_Notify_ProxySupplier_T< SERVANT_TYPE >::forward_any(), TAO_Notify_ProxySupplier_T< SERVANT_TYPE >::forward_any_no_filtering(), TAO_Notify_ProxySupplier_T< SERVANT_TYPE >::forward_structured(), TAO_Notify_ProxySupplier_T< SERVANT_TYPE >::forward_structured_no_filtering(), TAO_Notify_CosEC_ProxyPushConsumer::push(), TAO_Notify_ProxyConsumer::push_i(), TAO_Notify::Routing_Slip::route(), and TAO_Notify_Proxy::types_changed().
00015 { 00016 TAO_Notify_Worker_Task::Ptr task( this->worker_task_ ); 00017 if ( task.isSet() ) 00018 { 00019 task->execute( method_request ); 00020 } 00021 } |
|
Definition at line 300 of file Object.cpp. References TAO_Notify_PropertySeq::find(), CosNotification::PropertyValue, and qos_properties_. Referenced by TAO_Notify_ProxyConsumer::supports_reliable_events().
00303 { 00304 // qos_properties_ is essentially a map and the find() method returns 00305 // zero on success. We must convert this to a boolean value. 00306 return (this->qos_properties_.find (name, value) == 0); 00307 } |
|
|
Allow access to the underlying worker task.
Definition at line 361 of file Object.cpp. References worker_task_.
00362 { 00363 return this->worker_task_.get (); 00364 } |
|
Have we been shutdown. returns 1 if shutdown.
Definition at line 71 of file Object.inl. Referenced by TAO_Notify::Routing_Slip::dispatch(), TAO_Notify_Consumer::dispatch_pending(), and TAO_Notify_Method_Request_Lookup::execute_i().
00072 { 00073 return this->shutdown_; 00074 } |
|
This Object's ID.
Definition at line 8 of file Object.inl. Referenced by TAO_Notify_Builder::build_consumer_admin(), TAO_Notify_Builder::build_event_channel(), TAO_Notify_Builder::build_supplier_admin(), TAO_Notify::Routing_Slip::dispatch(), TAO_Notify_EventChannelFactory::find_proxy_consumer(), TAO_Notify_EventChannelFactory::find_proxy_supplier(), TAO_Notify_EventChannelFactory::get_id(), TAO_Notify_SupplierAdmin::MyID(), and TAO_Notify_ConsumerAdmin::MyID().
00009 { 00010 return id_; 00011 } |
|
Uses the poas from the supplied object.
Definition at line 24 of file Object.inl. References object_poa(), own_object_poa_, own_proxy_poa_, poa(), proxy_poa(), set_object_poa(), set_poa(), and set_proxy_poa(). Referenced by initialize().
00025 { 00026 this->set_proxy_poa( parent.proxy_poa() ); 00027 this->set_object_poa( parent.object_poa() ); 00028 this->set_poa( parent.poa() ); 00029 00030 // Do not take ownership of parent's poas 00031 own_proxy_poa_ = false; 00032 own_object_poa_ = false; 00033 } |
|
Init this object with data from .
Definition at line 46 of file Object.cpp. References ACE_ASSERT, admin_properties_, event_manager_, TAO_Notify_Refcountable_Guard_T< TAO_Notify_Event_Manager >::get(), inherit_poas(), qos_changed(), qos_properties_, TAO_Notify_QoSProperties::transfer(), and worker_task_. Referenced by TAO_Notify::Topology_Object::initialize().
00047 { 00048 ACE_ASSERT (parent != 0 && this->event_manager_.get() == 0); 00049 00050 // Do not use sets to avoid asserts. 00051 // Object must be able to inherit NULL references 00052 // due to current design. 00053 this->event_manager_ = parent->event_manager_; 00054 this->admin_properties_ = parent->admin_properties_; 00055 this->inherit_poas( *parent ); 00056 this->worker_task_ = parent->worker_task_; 00057 00058 // Pass QoS 00059 parent->qos_properties_.transfer (this->qos_properties_); 00060 this->qos_changed (this->qos_properties_); 00061 } |
|
Load our attributes. Each derived type should call the superclass load first before loading its own attributes. Reimplemented in TAO_Notify_Admin, TAO_Notify_EventChannel, TAO_Notify_ProxyPushConsumer, TAO_Notify_ProxyPushSupplier, TAO_Notify_SequenceProxyPushConsumer, TAO_Notify_SequenceProxyPushSupplier, TAO_Notify_StructuredProxyPushConsumer, and TAO_Notify_StructuredProxyPushSupplier. Definition at line 348 of file Object.cpp. References TAO_Notify_QoSProperties::init(), TAO_Notify::NVPList::load(), and qos_properties_. Referenced by TAO_Notify_EventChannel::load_attrs(), TAO_Notify_Admin::load_attrs(), TAO_Notify_SupplierAdmin::load_proxy(), and TAO_Notify_ConsumerAdmin::load_proxy().
00349 { 00350 attrs.load (this->qos_properties_.event_reliability ()); 00351 attrs.load (this->qos_properties_.connection_reliability ()); 00352 attrs.load (this->qos_properties_.priority ()); 00353 attrs.load (this->qos_properties_.timeout ()); 00354 attrs.load (this->qos_properties_.stop_time_supported ()); 00355 attrs.load (this->qos_properties_.maximum_batch_size ()); 00356 attrs.load (this->qos_properties_.pacing_interval ()); 00357 this->qos_properties_.init (); 00358 } |
|
Accessor for the object_poa_.
Definition at line 59 of file Object.inl. References object_poa_. Referenced by inherit_poas().
00060 { 00061 return this->object_poa_; 00062 } |
|
Get the POA assigned to us.
Definition at line 53 of file Object.inl. Referenced by TAO_Notify_EventChannel::default_consumer_admin(), TAO_Notify_EventChannel::default_supplier_admin(), inherit_poas(), and TAO_Notify_EventChannel::load_child().
00054 { 00055 return this->poa_; 00056 } |
|
Accessor for the proxy_poa_.
Definition at line 65 of file Object.inl. References proxy_poa_. Referenced by TAO_Notify_Proxy::deactivate(), and inherit_poas().
00066 { 00067 return this->proxy_poa_; 00068 } |
|
Notification that can be overridden by subclasses to be informed that have been modified.
Reimplemented in TAO_Notify_Proxy, and TAO_Notify_ProxySupplier. Definition at line 311 of file Object.cpp. Referenced by initialize(), and set_qos().
00312 {
00313 // NOP.
00314 }
|
|
Get CORBA Ref.
Definition at line 125 of file Object.cpp. References TAO_Notify_POA_Helper::id_to_reference(). Referenced by TAO_Notify_RT_StructuredProxyPushSupplier::activate(), TAO_Notify_ProxySupplier_T< SERVANT_TYPE >::MyAdmin(), and TAO_Notify_ProxyConsumer_T< SERVANT_TYPE >::MyAdmin().
00126 { 00127 return this->poa_->id_to_reference (this->id_); 00128 } |
|
Called by derived types to save their attributes. Each derived type should call its superclass version before saving its own attrs. Reimplemented in TAO_Notify_Admin, TAO_Notify_EventChannel, and TAO_Notify_Proxy. Definition at line 336 of file Object.cpp. References add_qos_attr(). Referenced by TAO_Notify_Proxy::save_attrs(), TAO_Notify_EventChannel::save_attrs(), and TAO_Notify_Admin::save_attrs().
00337 { 00338 add_qos_attr(attrs, this->qos_properties_.event_reliability ()); 00339 add_qos_attr(attrs, this->qos_properties_.connection_reliability ()); 00340 add_qos_attr(attrs, this->qos_properties_.priority ()); 00341 add_qos_attr(attrs, this->qos_properties_.timeout ()); 00342 add_qos_attr(attrs, this->qos_properties_.stop_time_supported ()); 00343 add_qos_attr(attrs, this->qos_properties_.maximum_batch_size ()); 00344 add_qos_attr(attrs, this->qos_properties_.pacing_interval ()); 00345 } |
|
Definition at line 77 of file Object.inl. References ACE_ASSERT, and ACE_Strong_Bound_Ptr< X, ACE_LOCK >::reset(). Referenced by TAO_Notify_EventChannel::init().
00078 { 00079 ACE_ASSERT( admin_properties != 0 ); 00080 this->admin_properties_.reset( admin_properties ); 00081 } |
|
Definition at line 64 of file Object.cpp. References ACE_ASSERT, event_manager_, and TAO_Notify_Refcountable_Guard_T< TAO_Notify_Event_Manager >::reset(). Referenced by TAO_Notify_EventChannel::init().
00065 { 00066 ACE_ASSERT( event_manager != 0 ); 00067 this->event_manager_.reset( event_manager ); 00068 } |
|
Setting the object_poa_ gives ownership to this class.
Definition at line 228 of file Object.cpp. References destroy_object_poa(), object_poa_, and own_object_poa_. Referenced by adopt_poa(), and inherit_poas().
00229 { 00230 // shutdown current object poa. 00231 this->destroy_object_poa (); 00232 00233 this->object_poa_ = object_poa; 00234 00235 this->own_object_poa_ = true; 00236 } |
|
Setting the object_poa_ gives ownership to this class.
Definition at line 239 of file Object.cpp. Referenced by adopt_poa(), inherit_poas(), and set_primary_as_proxy_poa().
00240 { 00241 this->poa_ = poa; 00242 } |
|
Changes the primary poa to the current proxy poa.
Definition at line 47 of file Object.inl. References set_poa(). Referenced by TAO_Notify_Proxy::activate().
00048 { 00049 this->set_poa( this->proxy_poa() ); 00050 } |
|
Setting the proxy_poa_ gives ownership to this class.
Definition at line 217 of file Object.cpp. References destroy_proxy_poa(), own_proxy_poa_, and proxy_poa_. Referenced by adopt_poa(), TAO_Notify_RT_Builder::apply_lane_concurrency(), TAO_Notify_RT_Builder::apply_thread_pool_concurrency(), and inherit_poas().
00218 { 00219 // shutdown current proxy poa. 00220 this->destroy_proxy_poa (); 00221 00222 this->proxy_poa_ = proxy_poa; 00223 00224 this->own_proxy_poa_ = true; 00225 } |
|
|
Set Worker Task. This object assume ownership of the set object.
Definition at line 204 of file Object.cpp. References ACE_ASSERT, own_worker_task_, shutdown_worker_task(), and worker_task_. Referenced by TAO_Notify_Builder::apply_reactive_concurrency(), and TAO_Notify_Builder::apply_thread_pool_concurrency().
00205 { 00206 ACE_ASSERT( worker_task != 0 ); 00207 00208 // shutdown the current worker. 00209 this->shutdown_worker_task (); 00210 00211 this->worker_task_.reset (worker_task); 00212 00213 this->own_worker_task_ = true; 00214 } |
|
shutdown. Returns 1 ifif the shutdown was already run once before.
Reimplemented in TAO_Notify_Admin, TAO_Notify_EventChannel, TAO_Notify_EventChannelFactory, TAO_Notify_ProxyConsumer, and TAO_Notify_ProxySupplier. Definition at line 106 of file Object.cpp. References ACE_GUARD_RETURN, deactivate(), shutdown_worker_task(), and TAO_SYNCH_MUTEX. Referenced by TAO_Notify_ProxySupplier::shutdown(), TAO_Notify_ProxyConsumer::shutdown(), TAO_Notify_EventChannelFactory::shutdown(), TAO_Notify_EventChannel::shutdown(), and TAO_Notify_Admin::shutdown().
00107 { 00108 { 00109 ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, ace_mon, this->lock_, 1); 00110 00111 if (this->shutdown_ == 1) 00112 return 1; // Another thread has already run shutdown. 00113 00114 this->shutdown_ = 1; 00115 } 00116 00117 this->deactivate (); 00118 00119 this->shutdown_worker_task (); 00120 00121 return 0; 00122 } |
|
Shutdown the current worker task and delete it if we own it.
Definition at line 131 of file Object.cpp. References own_worker_task_, and worker_task_. Referenced by set_worker_task(), and shutdown().
00132 { 00133 // Only do this if we are the owner. 00134 TAO_Notify_Worker_Task::Ptr task( this->worker_task_ ); 00135 this->worker_task_.reset(); 00136 if ( task.isSet() ) 00137 { 00138 if ( this->own_worker_task_ ) 00139 { 00140 task->shutdown (); 00141 } 00142 } 00143 } |
|
Obtain the Timer manager associated with this object.
Definition at line 317 of file Object.cpp. References ACE_ASSERT, and worker_task_.
00318 { 00319 ACE_ASSERT (worker_task_.get() != 0); 00320 return this->worker_task_->timer (); 00321 } |
|
|
|
|
Admin Properties.
Definition at line 205 of file Object.h. Referenced by TAO_Notify_Builder::apply_thread_pool_concurrency(), and initialize(). |
|
The event manager.
Definition at line 202 of file Object.h. Referenced by event_manager(), initialize(), and set_event_manager(). |
|
Id assigned to this object.
|
|
The mutex to serialize access to state variables.
Reimplemented in TAO_Notify_FilterAdmin. Definition at line 182 of file Object.h. Referenced by TAO_Notify_Consumer::proxy_lock(). |
|
The POA in which the object's children are activated.
Definition at line 194 of file Object.h. Referenced by destroy_object_poa(), destroy_proxy_poa(), object_poa(), and set_object_poa(). |
|
Definition at line 195 of file Object.h. Referenced by destroy_object_poa(), inherit_poas(), and set_object_poa(). |
|
Definition at line 191 of file Object.h. Referenced by destroy_proxy_poa(), inherit_poas(), and set_proxy_poa(). |
|
Definition at line 209 of file Object.h. Referenced by set_worker_task(), and shutdown_worker_task(). |
|
The POA in which the object is activated.
|
|
The POA in which the proxys are activated.
Definition at line 190 of file Object.h. Referenced by destroy_object_poa(), destroy_proxy_poa(), proxy_poa(), and set_proxy_poa(). |
|
= Protected data members. QoS Properties.
Definition at line 152 of file Object.h. Referenced by find_qos_property_value(), get_qos(), initialize(), and load_attrs(). |
|
Are we shutdown (i,e. scheduled for destroy).
|
|
Worker Task.
Definition at line 208 of file Object.h. Referenced by get_worker_task(), initialize(), set_qos(), set_worker_task(), shutdown_worker_task(), and timer(). |