-
Notifications
You must be signed in to change notification settings - Fork 0
/
Square_qos.xml
48 lines (37 loc) · 1.81 KB
/
Square_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
<?xml version="1.0" encoding="utf-8"?>
<!--
*****************************************************************************
* (c) 2005-2017 Copyright, Real-Time Innovations, All rights reserved. *
* *
* Permission to modify and use for internal purposes granted. *
* This software is provided "as is", without warranty, express or implied. *
* *
*****************************************************************************
-->
<!--
=======================================================================
=== Square Service QoS Profiles ===
=======================================================================
RTI Connext DDS User QoS Profiles
Service specific qos profiles.
Configure service specific qos policies for each topic using topic
filters, that specialize common qos profiles.
Author: Rajive Joshi, Real-Time Innovations Inc. Copyright (C) 2017.
-->
<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">
<qos_library name="SquareQosLib">
<qos_profile name="Square_Root"
base_name="EndpointQosLib::User.Pattern.Status">
<!-- Note: policies inherit from this qos profile's base_name, unless
another base_name is used to override -->
<datareader_qos topic_filter="Square" />
<!-- Override by specifying a different qos profile via base_name -->
<datawriter_qos topic_filter="Square"
base_name="EndpointQosLib::User.Pattern.LastValueCache" />
</qos_profile>
<qos_profile name="Square_Pub" base_name="Square_Root" />
<qos_profile name="Square_Sub" base_name="Square_Root" />
</qos_library>
</dds>