I have installed RTI DDS 7.2.0 and expected to see the python API libraries install by default. I am not finding those libraries, Do I need to do something special to get them installed or is it a anpther step?
I have installed RTI DDS 7.2.0 and expected to see the python API libraries install by default. I am not finding those libraries, Do I need to do something special to get them installed or is it a anpther step?
With the following JAVA code (dds 7.1) the topic is created successfully, however topic2, the result of 'find_topic()' is always null.
Topic topic = my_participant.create_topic(topic_name,
type_name,
DomainParticipant.TOPIC_QOS_DEFAULT,
null,
StatusKind.STATUS_MASK_NONE);
}
Topic topic2 = my_participant.find_topic( topic_name, null);