void TAO_Notify_Property_Boolean::get (CosNotification::PropertySeq& prop_seq) { /// Make space prop_seq.length (prop_seq.length () + 1); prop_seq[prop_seq.length () - 1].value <<= CORBA::Any::from_boolean (this->value_); }
int TAO_Notify_PropertySeq::init (const CosNotification::PropertySeq& prop_seq) { ACE_CString name; for (CORBA::ULong i = 0; i < prop_seq.length (); ++i) { name = prop_seq[i].name.in (); if (this->property_map_.rebind (name, prop_seq[i].value) == -1) return -1; } // Note call to rebind. This allows to call <init> to set updates. return 0; }
void TAO_Notify_Tests_Periodic_Consumer::handle_start_event (const CosNotification::PropertySeq& prop_seq) { if (TAO_debug_level > 0) ACE_DEBUG ((LM_DEBUG, "(%P, %t)Consumer %s received inital (-1)th event\n", this->name_.c_str ())); for (CORBA::ULong i = 0; i < prop_seq.length (); ++i) { if (ACE_OS::strcmp (prop_seq[i].name.in (), "BaseTime") == 0) { TimeBase::TimeT base_time; ACE_hrtime_t base_time_hrtime; prop_seq[i].value >>= base_time; ORBSVCS_Time::TimeT_to_hrtime (base_time_hrtime, base_time); stats_.base_time (base_time_hrtime); } // if max_count has not been already specified, get it from the supplier. else if (this->max_count_ == -1 &&