void TAO_Notify_EventChannel::load_attrs(const TAO_Notify::NVPList& attrs) { TAO_Notify_Object::load_attrs(attrs); attrs.load(this->admin_properties().max_global_queue_length()); attrs.load(this->admin_properties().max_consumers()); attrs.load(this->admin_properties().max_suppliers()); attrs.load(this->admin_properties().reject_new_events()); this->admin_properties().init(); }
void TAO_Notify_StructuredProxyPushConsumer::load_attrs (const TAO_Notify::NVPList& attrs) { SuperClass::load_attrs(attrs); ACE_CString ior; if (attrs.load("PeerIOR", ior)) { CORBA::ORB_var orb = TAO_Notify_PROPERTIES::instance()->orb(); try { CosNotifyComm::StructuredPushSupplier_var ps = CosNotifyComm::StructuredPushSupplier::_nil(); if ( ior.length() > 0 ) { CORBA::Object_var obj = orb->string_to_object(ior.c_str()); ps = CosNotifyComm::StructuredPushSupplier::_unchecked_narrow(obj.in()); } // minor hack: suppress generating subscription updates during reload. bool save_updates = this->updates_off_; this->updates_off_ = true; this->connect_structured_push_supplier(ps.in()); this->updates_off_ = save_updates; } catch (const CORBA::Exception&) { // if we can't reconnect to peer, tough... } } }
void TAO_Notify_Object::load_attrs(const TAO_Notify::NVPList& attrs) { attrs.load (this->qos_properties_.event_reliability ()); attrs.load (this->qos_properties_.connection_reliability ()); attrs.load (this->qos_properties_.priority ()); attrs.load (this->qos_properties_.timeout ()); attrs.load (this->qos_properties_.stop_time_supported ()); attrs.load (this->qos_properties_.maximum_batch_size ()); attrs.load (this->qos_properties_.pacing_interval ()); this->qos_properties_.init (); }
void TAO_Notify_StructuredProxyPushSupplier::load_attrs (const TAO_Notify::NVPList& attrs) { SuperClass::load_attrs(attrs); ACE_CString ior; if (attrs.load("PeerIOR", ior)) { CORBA::ORB_var orb = TAO_Notify_PROPERTIES::instance()->orb(); try { CosNotifyComm::StructuredPushConsumer_var pc = CosNotifyComm::StructuredPushConsumer::_nil(); if (ior.length() > 0) { CORBA::Object_var obj = orb->string_to_object(ior.c_str()); pc = CosNotifyComm::StructuredPushConsumer::_unchecked_narrow(obj.in()); } this->connect_structured_push_consumer(pc.in()); } catch (const CORBA::Exception&) { // if we can't connect... tough } } }