-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathShapes_qos.xml
57 lines (45 loc) · 2.54 KB
/
Shapes_qos.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<!--
-******************************************************************************
- (C) Copyright 2020-2022 Real-Time Innovations, Inc. All rights reserved.
-
- The use of this software is governed by the terms specified in the
- RTI Labs License Agreement, available at https://www.rti.com/terms/RTILabs.
-
- By accessing, downloading, or otherwise using this software, you agree to
- be bound by those terms.
-*****************************************************************************
-->
<!--
-*****************************************************************************
Shape Service - QoS Profiles
- Defines a topic specific service qos profile, common across all the interfaces
- Defines per interface specific qos profiles that extends the common topic
specific service profile, and makes any interface specific adjustments
- A new per interface specific qos profile should be added when a new interface
is defined in the if/*.xml file
-*****************************************************************************
-->
<dds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://community.rti.com/schema/latest/rti_dds_qos_profiles.xsd">
<!-- Service QosProfiles -->
<qos_library name="ShapesQosLib">
<!-- Topic specific QosProfile, common across all the interfaces -->
<qos_profile name="_root_">
<datareader_qos topic_filter="Square" base_name="FlowQosLib::Streaming.BestEffort" />
<datawriter_qos topic_filter="Square" base_name="FlowQosLib::Streaming.Reliable" />
<datareader_qos topic_filter="Circle" base_name="FlowQosLib::Streaming.Reliable" />
<datawriter_qos topic_filter="Circle" base_name="FlowQosLib::Streaming.Reliable" />
<datareader_qos topic_filter="Triangle" base_name="FlowQosLib::Status" />
<datawriter_qos topic_filter="Triangle" base_name="FlowQosLib::Status" />
<!-- Catch all -->
<datareader_qos topic_filter="*" base_name="FlowQosLib::Streaming.BestEffort" />
<datawriter_qos topic_filter="*" base_name="FlowQosLib::Streaming.Reliable" />
</qos_profile>
<!-- Interface specific QosProfile: Pub -->
<qos_profile name="Pub" base_name="_root_" />
<!-- Interface specific QosProfile: Sub -->
<qos_profile name="Sub" base_name="_root_" />
<!-- Interface specific QosProfile: PubSub -->
<qos_profile name="PubSub" base_name="_root_" />
</qos_library>
</dds>