RTI Connext Modern C++ API Version 7.6.0
USER_QOS_PROFILES.xml

The file that defines the QoS profiles that Foo_publisher.cxx and Foo_subscriber.cxx define.

See also
Configuring QoS Profiles with XML
set_qos (abstract)
1<?xml version="1.0"?>
2
3<dds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://community.rti.com/schema/current/rti_dds_profiles.xsd">
4
5 <qos_library name="RequestReplyExampleProfiles">
6
7 <!-- Use these profiles to customize the Requester or Replier QoS -->
8
9 <!-- These profiles inherit from the built-in profile
10 BuiltinQosLib::Pattern.RPC, which defines the default values for
11 the DataWriters and DataReaders created by a Requester or Replier
12 -->
13 <qos_profile name="RequesterExampleProfile" base_name="BuiltinQosLib::Pattern.RPC">
14 <!-- Set the QoS for the DataReader created by the Requester -->
15 <!--
16 <datareader_qos>
17 ...
18 </datareader_qos>
19 -->
20
21 <!-- Set the QoS for the DataWriter created by the Requester -->
22 <!--
23 <datawriter_qos>
24 ...
25 </datawriter_qos>
26 -->
27 </qos_profile>
28
29 <qos_profile name="ReplierExampleProfile" base_name="BuiltinQosLib::Pattern.RPC">
30
31 <!-- Set the QoS for the DataReader created by the Replier -->
32 <!--
33 <datareader_qos>
34 ...
35 </datareader_qos>
36 -->
37
38 <!-- Set the QoS for the DataWriter created by the Replier -->
39 <!--
40 <datawriter_qos>
41 ...
42 </datawriter_qos>
43 -->
44 </qos_profile>
45
46 </qos_library>
47</dds>