Skip to content

Commit c035946

Browse files
committed
Add XML files to describe built-in QoS configuration
Signed-off-by: Andrea Sorbini <[email protected]>
1 parent 92234d1 commit c035946

File tree

2 files changed

+458
-0
lines changed

2 files changed

+458
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<dds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://community.rti.com/schema/5.3.1/rti_dds_qos_profiles.xsd" version="5.3.1">
3+
<qos_library name="my_node">
4+
<qos_profile name="Default" is_default_qos="true" base_name="rmw_connextdds::Default">
5+
<datareader_qos topic_filter="rt/chatter">
6+
<reliability>
7+
<kind>RELIABLE_RELIABILITY_QOS</kind>
8+
</reliability>
9+
<history>
10+
<kind>KEEP_LAST_HISTORY_QOS</kind>
11+
<depth>10</depth>
12+
</history>
13+
</datareader_qos>
14+
<datawriter_qos topic_filter="rt/chatter">
15+
<reliability>
16+
<kind>RELIABLE_RELIABILITY_QOS</kind>
17+
</reliability>
18+
<history>
19+
<kind>KEEP_LAST_HISTORY_QOS</kind>
20+
<depth>7</depth>
21+
</history>
22+
</datawriter_qos>
23+
</qos_profile>
24+
</qos_library>
25+
</dds>

0 commit comments

Comments
 (0)