I'm curious to find out if RTI has a built-in topics that help you identify the topics currently avaialble and there associated TypeCodes. Any help would be much appreciated.
Thanks, Steve
I'm curious to find out if RTI has a built-in topics that help you identify the topics currently avaialble and there associated TypeCodes. Any help would be much appreciated.
Thanks, Steve
Hi Steve,
This example would be helpful to understand how to use built-in topics.
https://community.rti.com/examples/builtin-topics
You can get infomration about topics and type codes via the built-in topics.
Basically, what you need to do is to create a DataReader for built-in topics (which might be participant, publication, or subscription built-in topics depending on what entities you are interested in) and this DataReader will receive samples when endpoints (DataReader or DataWriter) or participants in your systems are created.
These are the links for the c++ reference describing attibutes of built-in topics:
http://community.rti.com/docs/html/api_cpp/structDDS__PublicationBuiltinTopicData.html
http://community.rti.com/docs/html/api_cpp/structDDS__SubscriptionBuiltinTopicData.html
Thanks,
Kyoungho