Namespace generated XSD and add missing attributes
This adds two things to the XSD (and the RNC file and options.md): * attributes previously missing because of a bug in the conversion script * a name space (https://cdds.io/config) Adding the name spacing requires a different set of attributes at the top of a configuration file, which in turn need to be ignored by the configuration parser, and which should be reflected in the configuration example in the README. Signed-off-by: Erik Boasson <eb@ilities.com>
This commit is contained in:
parent
c5b22bf629
commit
c642f5676a
6 changed files with 439 additions and 183 deletions
|
@ -1,9 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns="https://cdds.io/config"
|
||||
targetNamespace="https://cdds.io/config"
|
||||
elementFormDefault="qualified">
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="https://cdds.io/config" xmlns:config="https://cdds.io/config">
|
||||
<xs:element name="CycloneDDS">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
|
@ -11,7 +7,7 @@ CycloneDDS configuration</xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" ref="Domain"/>
|
||||
<xs:element minOccurs="0" ref="config:Domain"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -22,15 +18,15 @@ CycloneDDS configuration</xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="Compatibility"/>
|
||||
<xs:element minOccurs="0" ref="Discovery"/>
|
||||
<xs:element minOccurs="0" ref="General"/>
|
||||
<xs:element minOccurs="0" ref="Internal"/>
|
||||
<xs:element minOccurs="0" ref="Partitioning"/>
|
||||
<xs:element minOccurs="0" ref="SSL"/>
|
||||
<xs:element minOccurs="0" ref="Sizing"/>
|
||||
<xs:element minOccurs="0" ref="TCP"/>
|
||||
<xs:element minOccurs="0" ref="ThreadPool"/>
|
||||
<xs:element minOccurs="0" ref="config:Compatibility"/>
|
||||
<xs:element minOccurs="0" ref="config:Discovery"/>
|
||||
<xs:element minOccurs="0" ref="config:General"/>
|
||||
<xs:element minOccurs="0" ref="config:Internal"/>
|
||||
<xs:element minOccurs="0" ref="config:Partitioning"/>
|
||||
<xs:element minOccurs="0" ref="config:SSL"/>
|
||||
<xs:element minOccurs="0" ref="config:Sizing"/>
|
||||
<xs:element minOccurs="0" ref="config:TCP"/>
|
||||
<xs:element minOccurs="0" ref="config:ThreadPool"/>
|
||||
<xs:element minOccurs="0" name="Threads">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
|
@ -38,11 +34,11 @@ CycloneDDS configuration</xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="Thread"/>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="config:Thread"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element minOccurs="0" ref="Tracing"/>
|
||||
<xs:element minOccurs="0" ref="config:Tracing"/>
|
||||
</xs:all>
|
||||
<xs:attribute name="Id">
|
||||
<xs:annotation>
|
||||
|
@ -61,10 +57,10 @@ to compatability with standards and with other DDSI implementations.</p></
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="AssumeRtiHasPmdEndpoints"/>
|
||||
<xs:element minOccurs="0" ref="ExplicitlyPublishQosSetToDefault"/>
|
||||
<xs:element minOccurs="0" ref="ManySocketsMode"/>
|
||||
<xs:element minOccurs="0" ref="StandardsConformance"/>
|
||||
<xs:element minOccurs="0" ref="config:AssumeRtiHasPmdEndpoints"/>
|
||||
<xs:element minOccurs="0" ref="config:ExplicitlyPublishQosSetToDefault"/>
|
||||
<xs:element minOccurs="0" ref="config:ManySocketsMode"/>
|
||||
<xs:element minOccurs="0" ref="config:StandardsConformance"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -158,19 +154,19 @@ the discovery of peers.</p></xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="DSGracePeriod"/>
|
||||
<xs:element minOccurs="0" ref="DefaultMulticastAddress"/>
|
||||
<xs:element minOccurs="0" ref="EnableTopicDiscovery"/>
|
||||
<xs:element minOccurs="0" ref="MaxAutoParticipantIndex"/>
|
||||
<xs:element minOccurs="0" ref="ParticipantIndex"/>
|
||||
<xs:element minOccurs="0" ref="Peers"/>
|
||||
<xs:element minOccurs="0" ref="Ports"/>
|
||||
<xs:element minOccurs="0" ref="SPDPInterval"/>
|
||||
<xs:element minOccurs="0" ref="SPDPMulticastAddress"/>
|
||||
<xs:element minOccurs="0" ref="config:DSGracePeriod"/>
|
||||
<xs:element minOccurs="0" ref="config:DefaultMulticastAddress"/>
|
||||
<xs:element minOccurs="0" ref="config:EnableTopicDiscovery"/>
|
||||
<xs:element minOccurs="0" ref="config:MaxAutoParticipantIndex"/>
|
||||
<xs:element minOccurs="0" ref="config:ParticipantIndex"/>
|
||||
<xs:element minOccurs="0" ref="config:Peers"/>
|
||||
<xs:element minOccurs="0" ref="config:Ports"/>
|
||||
<xs:element minOccurs="0" ref="config:SPDPInterval"/>
|
||||
<xs:element minOccurs="0" ref="config:SPDPMulticastAddress"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="DSGracePeriod" type="duration_inf">
|
||||
<xs:element name="DSGracePeriod" type="config:duration_inf">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting controls for how long endpoints discovered via a Cloud
|
||||
|
@ -242,8 +238,8 @@ second be option be used.</p><p>The default value is:
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element ref="Group"/>
|
||||
<xs:element ref="Peer"/>
|
||||
<xs:element ref="config:Group"/>
|
||||
<xs:element ref="config:Peer"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -256,7 +252,7 @@ succeeds.</p></xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="Peer"/>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="config:Peer"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -288,13 +284,13 @@ by the DDSI 2.1 specification and rarely need to be changed.</p></xs:docum
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="Base"/>
|
||||
<xs:element minOccurs="0" ref="DomainGain"/>
|
||||
<xs:element minOccurs="0" ref="MulticastDataOffset"/>
|
||||
<xs:element minOccurs="0" ref="MulticastMetaOffset"/>
|
||||
<xs:element minOccurs="0" ref="ParticipantGain"/>
|
||||
<xs:element minOccurs="0" ref="UnicastDataOffset"/>
|
||||
<xs:element minOccurs="0" ref="UnicastMetaOffset"/>
|
||||
<xs:element minOccurs="0" ref="config:Base"/>
|
||||
<xs:element minOccurs="0" ref="config:DomainGain"/>
|
||||
<xs:element minOccurs="0" ref="config:MulticastDataOffset"/>
|
||||
<xs:element minOccurs="0" ref="config:MulticastMetaOffset"/>
|
||||
<xs:element minOccurs="0" ref="config:ParticipantGain"/>
|
||||
<xs:element minOccurs="0" ref="config:UnicastDataOffset"/>
|
||||
<xs:element minOccurs="0" ref="config:UnicastMetaOffset"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -355,7 +351,7 @@ to the DDSI 2.1 specification, section 9.6.1, constant d1).</p><p>Th
|
|||
default value is: &quot;10&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="SPDPInterval" type="duration">
|
||||
<xs:element name="SPDPInterval" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element specifies the interval between spontaneous transmissions
|
||||
|
@ -383,19 +379,19 @@ settings.</p></xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="AllowMulticast"/>
|
||||
<xs:element minOccurs="0" ref="DontRoute"/>
|
||||
<xs:element minOccurs="0" ref="EnableMulticastLoopback"/>
|
||||
<xs:element minOccurs="0" ref="ExternalNetworkAddress"/>
|
||||
<xs:element minOccurs="0" ref="ExternalNetworkMask"/>
|
||||
<xs:element minOccurs="0" ref="FragmentSize"/>
|
||||
<xs:element minOccurs="0" ref="MaxMessageSize"/>
|
||||
<xs:element minOccurs="0" ref="MulticastRecvNetworkInterfaceAddresses"/>
|
||||
<xs:element minOccurs="0" ref="MulticastTimeToLive"/>
|
||||
<xs:element minOccurs="0" ref="NetworkInterfaceAddress"/>
|
||||
<xs:element minOccurs="0" ref="PreferMulticast"/>
|
||||
<xs:element minOccurs="0" ref="Transport"/>
|
||||
<xs:element minOccurs="0" ref="UseIPv6"/>
|
||||
<xs:element minOccurs="0" ref="config:AllowMulticast"/>
|
||||
<xs:element minOccurs="0" ref="config:DontRoute"/>
|
||||
<xs:element minOccurs="0" ref="config:EnableMulticastLoopback"/>
|
||||
<xs:element minOccurs="0" ref="config:ExternalNetworkAddress"/>
|
||||
<xs:element minOccurs="0" ref="config:ExternalNetworkMask"/>
|
||||
<xs:element minOccurs="0" ref="config:FragmentSize"/>
|
||||
<xs:element minOccurs="0" ref="config:MaxMessageSize"/>
|
||||
<xs:element minOccurs="0" ref="config:MulticastRecvNetworkInterfaceAddresses"/>
|
||||
<xs:element minOccurs="0" ref="config:MulticastTimeToLive"/>
|
||||
<xs:element minOccurs="0" ref="config:NetworkInterfaceAddress"/>
|
||||
<xs:element minOccurs="0" ref="config:PreferMulticast"/>
|
||||
<xs:element minOccurs="0" ref="config:Transport"/>
|
||||
<xs:element minOccurs="0" ref="config:UseIPv6"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -481,7 +477,7 @@ address. This option is IPv4-only.</p><p>The default value is:
|
|||
&quot;0.0.0.0&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="FragmentSize" type="memsize">
|
||||
<xs:element name="FragmentSize" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element specifies the size of DDSI sample fragments generated by
|
||||
|
@ -497,7 +493,7 @@ of which the size is at least the minimum of 1025 and FragmentSize.</p>
|
|||
B&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="MaxMessageSize" type="memsize">
|
||||
<xs:element name="MaxMessageSize" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element specifies the maximum size of the UDP payload that
|
||||
|
@ -620,51 +616,51 @@ reserved. This includes renaming or moving options.</p></xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="AccelerateRexmitBlockSize"/>
|
||||
<xs:element minOccurs="0" ref="AssumeMulticastCapable"/>
|
||||
<xs:element minOccurs="0" ref="AutoReschedNackDelay"/>
|
||||
<xs:element minOccurs="0" ref="BuiltinEndpointSet"/>
|
||||
<xs:element minOccurs="0" ref="ControlTopic"/>
|
||||
<xs:element minOccurs="0" ref="DDSI2DirectMaxThreads"/>
|
||||
<xs:element minOccurs="0" ref="DefragReliableMaxSamples"/>
|
||||
<xs:element minOccurs="0" ref="DefragUnreliableMaxSamples"/>
|
||||
<xs:element minOccurs="0" ref="DeliveryQueueMaxSamples"/>
|
||||
<xs:element minOccurs="0" ref="EnableExpensiveChecks"/>
|
||||
<xs:element minOccurs="0" ref="GenerateKeyhash"/>
|
||||
<xs:element minOccurs="0" ref="HeartbeatInterval"/>
|
||||
<xs:element minOccurs="0" ref="LateAckMode"/>
|
||||
<xs:element minOccurs="0" ref="LeaseDuration"/>
|
||||
<xs:element minOccurs="0" ref="LivelinessMonitoring"/>
|
||||
<xs:element minOccurs="0" ref="MaxParticipants"/>
|
||||
<xs:element minOccurs="0" ref="MaxQueuedRexmitBytes"/>
|
||||
<xs:element minOccurs="0" ref="MaxQueuedRexmitMessages"/>
|
||||
<xs:element minOccurs="0" ref="MaxSampleSize"/>
|
||||
<xs:element minOccurs="0" ref="MeasureHbToAckLatency"/>
|
||||
<xs:element minOccurs="0" ref="MinimumSocketReceiveBufferSize"/>
|
||||
<xs:element minOccurs="0" ref="MinimumSocketSendBufferSize"/>
|
||||
<xs:element minOccurs="0" ref="MonitorPort"/>
|
||||
<xs:element minOccurs="0" ref="MultipleReceiveThreads"/>
|
||||
<xs:element minOccurs="0" ref="NackDelay"/>
|
||||
<xs:element minOccurs="0" ref="PreEmptiveAckDelay"/>
|
||||
<xs:element minOccurs="0" ref="PrimaryReorderMaxSamples"/>
|
||||
<xs:element minOccurs="0" ref="PrioritizeRetransmit"/>
|
||||
<xs:element minOccurs="0" ref="RediscoveryBlacklistDuration"/>
|
||||
<xs:element minOccurs="0" ref="RetransmitMerging"/>
|
||||
<xs:element minOccurs="0" ref="RetransmitMergingPeriod"/>
|
||||
<xs:element minOccurs="0" ref="RetryOnRejectBestEffort"/>
|
||||
<xs:element minOccurs="0" ref="SPDPResponseMaxDelay"/>
|
||||
<xs:element minOccurs="0" ref="ScheduleTimeRounding"/>
|
||||
<xs:element minOccurs="0" ref="SecondaryReorderMaxSamples"/>
|
||||
<xs:element minOccurs="0" ref="SendAsync"/>
|
||||
<xs:element minOccurs="0" ref="SquashParticipants"/>
|
||||
<xs:element minOccurs="0" ref="SynchronousDeliveryLatencyBound"/>
|
||||
<xs:element minOccurs="0" ref="SynchronousDeliveryPriorityThreshold"/>
|
||||
<xs:element minOccurs="0" ref="Test"/>
|
||||
<xs:element minOccurs="0" ref="UnicastResponseToSPDPMessages"/>
|
||||
<xs:element minOccurs="0" ref="UseMulticastIfMreqn"/>
|
||||
<xs:element minOccurs="0" ref="Watermarks"/>
|
||||
<xs:element minOccurs="0" ref="WriteBatch"/>
|
||||
<xs:element minOccurs="0" ref="WriterLingerDuration"/>
|
||||
<xs:element minOccurs="0" ref="config:AccelerateRexmitBlockSize"/>
|
||||
<xs:element minOccurs="0" ref="config:AssumeMulticastCapable"/>
|
||||
<xs:element minOccurs="0" ref="config:AutoReschedNackDelay"/>
|
||||
<xs:element minOccurs="0" ref="config:BuiltinEndpointSet"/>
|
||||
<xs:element minOccurs="0" ref="config:ControlTopic"/>
|
||||
<xs:element minOccurs="0" ref="config:DDSI2DirectMaxThreads"/>
|
||||
<xs:element minOccurs="0" ref="config:DefragReliableMaxSamples"/>
|
||||
<xs:element minOccurs="0" ref="config:DefragUnreliableMaxSamples"/>
|
||||
<xs:element minOccurs="0" ref="config:DeliveryQueueMaxSamples"/>
|
||||
<xs:element minOccurs="0" ref="config:EnableExpensiveChecks"/>
|
||||
<xs:element minOccurs="0" ref="config:GenerateKeyhash"/>
|
||||
<xs:element minOccurs="0" ref="config:HeartbeatInterval"/>
|
||||
<xs:element minOccurs="0" ref="config:LateAckMode"/>
|
||||
<xs:element minOccurs="0" ref="config:LeaseDuration"/>
|
||||
<xs:element minOccurs="0" ref="config:LivelinessMonitoring"/>
|
||||
<xs:element minOccurs="0" ref="config:MaxParticipants"/>
|
||||
<xs:element minOccurs="0" ref="config:MaxQueuedRexmitBytes"/>
|
||||
<xs:element minOccurs="0" ref="config:MaxQueuedRexmitMessages"/>
|
||||
<xs:element minOccurs="0" ref="config:MaxSampleSize"/>
|
||||
<xs:element minOccurs="0" ref="config:MeasureHbToAckLatency"/>
|
||||
<xs:element minOccurs="0" ref="config:MinimumSocketReceiveBufferSize"/>
|
||||
<xs:element minOccurs="0" ref="config:MinimumSocketSendBufferSize"/>
|
||||
<xs:element minOccurs="0" ref="config:MonitorPort"/>
|
||||
<xs:element minOccurs="0" ref="config:MultipleReceiveThreads"/>
|
||||
<xs:element minOccurs="0" ref="config:NackDelay"/>
|
||||
<xs:element minOccurs="0" ref="config:PreEmptiveAckDelay"/>
|
||||
<xs:element minOccurs="0" ref="config:PrimaryReorderMaxSamples"/>
|
||||
<xs:element minOccurs="0" ref="config:PrioritizeRetransmit"/>
|
||||
<xs:element minOccurs="0" ref="config:RediscoveryBlacklistDuration"/>
|
||||
<xs:element minOccurs="0" ref="config:RetransmitMerging"/>
|
||||
<xs:element minOccurs="0" ref="config:RetransmitMergingPeriod"/>
|
||||
<xs:element minOccurs="0" ref="config:RetryOnRejectBestEffort"/>
|
||||
<xs:element minOccurs="0" ref="config:SPDPResponseMaxDelay"/>
|
||||
<xs:element minOccurs="0" ref="config:ScheduleTimeRounding"/>
|
||||
<xs:element minOccurs="0" ref="config:SecondaryReorderMaxSamples"/>
|
||||
<xs:element minOccurs="0" ref="config:SendAsync"/>
|
||||
<xs:element minOccurs="0" ref="config:SquashParticipants"/>
|
||||
<xs:element minOccurs="0" ref="config:SynchronousDeliveryLatencyBound"/>
|
||||
<xs:element minOccurs="0" ref="config:SynchronousDeliveryPriorityThreshold"/>
|
||||
<xs:element minOccurs="0" ref="config:Test"/>
|
||||
<xs:element minOccurs="0" ref="config:UnicastResponseToSPDPMessages"/>
|
||||
<xs:element minOccurs="0" ref="config:UseMulticastIfMreqn"/>
|
||||
<xs:element minOccurs="0" ref="config:Watermarks"/>
|
||||
<xs:element minOccurs="0" ref="config:WriteBatch"/>
|
||||
<xs:element minOccurs="0" ref="config:WriterLingerDuration"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -688,7 +684,7 @@ wildcards) against which the interface names are matched.</p><p>The
|
|||
default value is: &quot;&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="AutoReschedNackDelay" type="duration_inf">
|
||||
<xs:element name="AutoReschedNackDelay" type="config:duration_inf">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting controls the interval with which a reader will continue
|
||||
|
@ -798,7 +794,7 @@ checks.</p><p>The default value is: &quot;&quot;.</p><
|
|||
keys.</p><p>The default value is: &quot;false&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="HeartbeatInterval" type="duration_inf">
|
||||
<xs:element name="HeartbeatInterval">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This elemnents allows configuring the base interval for sending writer
|
||||
|
@ -808,6 +804,45 @@ heartbeats and the bounds within it can vary.</p>
|
|||
'inf' for infinity. Recognised units: ns, us, ms, s, min, hr,
|
||||
day.</p><p>The default value is: &quot;100 ms&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="config:duration_inf">
|
||||
<xs:attribute name="max" type="config:duration_inf">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This attribute sets the maximum interval for periodic heartbeats.</p>
|
||||
|
||||
<p>Valid values are finite durations with an explicit unit or the keyword
|
||||
'inf' for infinity. Recognised units: ns, us, ms, s, min, hr,
|
||||
day.</p><p>The default value is: &quot;8 s&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="min" type="config:duration_inf">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This attribute sets the minimum interval that must have passed since
|
||||
the most recent heartbeat from a writer, before another asynchronous (not
|
||||
directly related to writing) will be sent.</p>
|
||||
|
||||
<p>Valid values are finite durations with an explicit unit or the keyword
|
||||
'inf' for infinity. Recognised units: ns, us, ms, s, min, hr,
|
||||
day.</p><p>The default value is: &quot;5 ms&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="minsched" type="config:duration_inf">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This attribute sets the minimum interval for periodic heartbeats.
|
||||
Other events may still cause heartbeats to go out.</p>
|
||||
|
||||
<p>Valid values are finite durations with an explicit unit or the keyword
|
||||
'inf' for infinity. Recognised units: ns, us, ms, s, min, hr,
|
||||
day.</p><p>The default value is: &quot;20 ms&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="LateAckMode" type="xs:boolean">
|
||||
<xs:annotation>
|
||||
|
@ -817,7 +852,7 @@ committed to delivering it.</p><p>The default value is:
|
|||
&quot;false&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="LeaseDuration" type="duration">
|
||||
<xs:element name="LeaseDuration" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting controls the default participant lease duration. <p>
|
||||
|
@ -826,7 +861,7 @@ committed to delivering it.</p><p>The default value is:
|
|||
s, min, hr, day.</p><p>The default value is: &quot;10 s&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="LivelinessMonitoring" type="xs:boolean">
|
||||
<xs:element name="LivelinessMonitoring">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element controls whether or not implementation should internally
|
||||
|
@ -835,6 +870,30 @@ traces can be dumped automatically when some thread appears to have
|
|||
stopped making progress.</p><p>The default value is:
|
||||
&quot;false&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:boolean">
|
||||
<xs:attribute name="Interval" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element controls the interval at which to check whether threads
|
||||
have been making progress.</p>
|
||||
|
||||
<p>The unit must be specified explicitly. Recognised units: ns, us, ms,
|
||||
s, min, hr, day.</p><p>The default value is: &quot;1s&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="StackTraces" type="xs:boolean">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element controls whether or not to write stack traces to the
|
||||
Cyclone DDS trace when a thread fails to make progress (on select
|
||||
platforms only).</p><p>The default value is: &quot;true&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="MaxParticipants" type="xs:integer">
|
||||
<xs:annotation>
|
||||
|
@ -844,7 +903,7 @@ participants this Cyclone DDS instance is willing to service. 0 is
|
|||
unlimited.</p><p>The default value is: &quot;0&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="MaxQueuedRexmitBytes" type="memsize">
|
||||
<xs:element name="MaxQueuedRexmitBytes" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting limits the maximum number of bytes queued for
|
||||
|
@ -866,7 +925,7 @@ kB&quot;.</p></xs:documentation>
|
|||
retransmission.</p><p>The default value is: &quot;200&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="MaxSampleSize" type="memsize">
|
||||
<xs:element name="MaxSampleSize" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting controls the maximum (CDR) serialised size of samples
|
||||
|
@ -889,7 +948,7 @@ measured latencies are quite noisy and are currently not used
|
|||
anywhere.</p><p>The default value is: &quot;false&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="MinimumSocketReceiveBufferSize" type="memsize">
|
||||
<xs:element name="MinimumSocketReceiveBufferSize" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting controls the minimum size of socket receive buffers. The
|
||||
|
@ -908,7 +967,7 @@ a smaller buffer should that attempt fail.</p>
|
|||
&quot;default&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="MinimumSocketSendBufferSize" type="memsize">
|
||||
<xs:element name="MinimumSocketSendBufferSize" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting controls the minimum size of socket send buffers. This
|
||||
|
@ -931,7 +990,7 @@ positive number is used as the TCP port number.</p><p>The default va
|
|||
is: &quot;-1&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="MultipleReceiveThreads" type="xs:boolean">
|
||||
<xs:element name="MultipleReceiveThreads">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element controls whether all traffic is handled by a single
|
||||
|
@ -940,8 +999,25 @@ latency. Currently multiple receive threads are only used for
|
|||
connectionless transport (e.g., UDP) and ManySocketsMode not set to
|
||||
single (the default).</p><p>The default value is: &quot;true&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:boolean">
|
||||
<xs:attribute name="maxretries" type="xs:integer">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>Receive threads dedicated to a single socket can only be triggered for
|
||||
termination by sending a packet. Reception of any packet will do, so
|
||||
termination failure due to packet loss is exceedingly unlikely, but to
|
||||
eliminate all risks, it will retry as many times as specified by this
|
||||
attribute before aborting.</p><p>The default value is:
|
||||
&quot;4294967295&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="NackDelay" type="duration">
|
||||
<xs:element name="NackDelay" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting controls the delay between receipt of a HEARTBEAT
|
||||
|
@ -954,7 +1030,7 @@ that NACK will incorporate the latest information.</p>
|
|||
s, min, hr, day.</p><p>The default value is: &quot;10 ms&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="PreEmptiveAckDelay" type="duration">
|
||||
<xs:element name="PreEmptiveAckDelay" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting controls the delay between the discovering a remote
|
||||
|
@ -984,7 +1060,7 @@ data, speeding up recovery.</p><p>The default value is:
|
|||
&quot;true&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="RediscoveryBlacklistDuration" type="duration_inf">
|
||||
<xs:element name="RediscoveryBlacklistDuration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element controls for how long a remote participant that was
|
||||
|
@ -1001,6 +1077,23 @@ is therefore recommended to set it to at least several seconds.</p>
|
|||
'inf' for infinity. Recognised units: ns, us, ms, s, min, hr,
|
||||
day.</p><p>The default value is: &quot;10s&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="config:duration_inf">
|
||||
<xs:attribute name="enforce" type="xs:boolean">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This attribute controls whether the configured time during which
|
||||
recently deleted participants will not be rediscovered (i.e., "black
|
||||
listed") is enforced and following complete removal of the participant in
|
||||
Cyclone DDS, or whether it can be rediscovered earlier provided all
|
||||
traces of that participant have been removed already.</p><p>The default
|
||||
value is: &quot;false&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="RetransmitMerging">
|
||||
<xs:annotation>
|
||||
|
@ -1029,7 +1122,7 @@ Internal/RetransmitMergingPeriod.</p><p>The default value is:
|
|||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="RetransmitMergingPeriod" type="duration">
|
||||
<xs:element name="RetransmitMergingPeriod" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting determines the size of the time window in which a NACK of
|
||||
|
@ -1051,7 +1144,7 @@ into the reader caches when resource limits are reached.</p><p>The
|
|||
default value is: &quot;false&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="SPDPResponseMaxDelay" type="duration">
|
||||
<xs:element name="SPDPResponseMaxDelay" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>Maximum pseudo-random delay in milliseconds between discovering a
|
||||
|
@ -1061,7 +1154,7 @@ remote participant and responding to it.</p>
|
|||
s, min, hr, day.</p><p>The default value is: &quot;0 ms&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="ScheduleTimeRounding" type="duration">
|
||||
<xs:element name="ScheduleTimeRounding" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting allows the timing of scheduled events to be rounded up so
|
||||
|
@ -1103,7 +1196,7 @@ by setting Internal/BuiltinEndpointSet to "minimal" but with less loss of
|
|||
information).</p><p>The default value is: &quot;false&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="SynchronousDeliveryLatencyBound" type="duration_inf">
|
||||
<xs:element name="SynchronousDeliveryLatencyBound" type="config:duration_inf">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element controls whether samples sent by a writer with QoS
|
||||
|
@ -1137,7 +1230,7 @@ the expense of aggregate bandwidth.</p><p>The default value is:
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" ref="XmitLossiness"/>
|
||||
<xs:element minOccurs="0" ref="config:XmitLossiness"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -1171,10 +1264,10 @@ to <i>false</i>.</p><p>The default value is: &quot;t
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="WhcAdaptive"/>
|
||||
<xs:element minOccurs="0" ref="WhcHigh"/>
|
||||
<xs:element minOccurs="0" ref="WhcHighInit"/>
|
||||
<xs:element minOccurs="0" ref="WhcLow"/>
|
||||
<xs:element minOccurs="0" ref="config:WhcAdaptive"/>
|
||||
<xs:element minOccurs="0" ref="config:WhcHigh"/>
|
||||
<xs:element minOccurs="0" ref="config:WhcHighInit"/>
|
||||
<xs:element minOccurs="0" ref="config:WhcLow"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -1186,7 +1279,7 @@ mark to current traffic conditions, based on retransmit requests and
|
|||
transmit pressure.</p><p>The default value is: &quot;true&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="WhcHigh" type="memsize">
|
||||
<xs:element name="WhcHigh" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element sets the maximum allowed high-water mark for the Cyclone
|
||||
|
@ -1199,7 +1292,7 @@ this size.</p>
|
|||
kB&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="WhcHighInit" type="memsize">
|
||||
<xs:element name="WhcHighInit" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element sets the initial level of the high-water mark for the
|
||||
|
@ -1211,7 +1304,7 @@ Cyclone DDS WHCs, expressed in bytes.</p>
|
|||
kB&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="WhcLow" type="memsize">
|
||||
<xs:element name="WhcLow" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element sets the low-water mark for the Cyclone DDS WHCs,
|
||||
|
@ -1237,7 +1330,7 @@ dds_write_flush function to ensure thta all samples are
|
|||
written.</p><p>The default value is: &quot;false&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="WriterLingerDuration" type="duration">
|
||||
<xs:element name="WriterLingerDuration" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This setting controls the maximum duration for which actual deletion
|
||||
|
@ -1257,9 +1350,9 @@ partitions.</p></xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element ref="IgnoredPartitions"/>
|
||||
<xs:element ref="NetworkPartitions"/>
|
||||
<xs:element ref="PartitionMappings"/>
|
||||
<xs:element ref="config:IgnoredPartitions"/>
|
||||
<xs:element ref="config:NetworkPartitions"/>
|
||||
<xs:element ref="config:PartitionMappings"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -1271,7 +1364,7 @@ combinations that are not distributed over the network.</p></xs:documentat
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="IgnoredPartition"/>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="config:IgnoredPartition"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -1306,7 +1399,7 @@ partitions.</p></xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="NetworkPartition"/>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="config:NetworkPartition"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -1351,7 +1444,7 @@ partition/topic combinations to Cyclone DDS network partitions.</p></xs:do
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="PartitionMapping"/>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" ref="config:PartitionMapping"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -1394,8 +1487,8 @@ SSL/TLS for DDSI over TCP.</p></xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="CertificateVerification"/>
|
||||
<xs:element minOccurs="0" ref="Ciphers"/>
|
||||
<xs:element minOccurs="0" ref="config:CertificateVerification"/>
|
||||
<xs:element minOccurs="0" ref="config:Ciphers"/>
|
||||
<xs:element minOccurs="0" name="Enable" type="xs:boolean">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
|
@ -1403,12 +1496,12 @@ SSL/TLS for DDSI over TCP.</p></xs:documentation>
|
|||
&quot;false&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element minOccurs="0" ref="EntropyFile"/>
|
||||
<xs:element minOccurs="0" ref="KeyPassphrase"/>
|
||||
<xs:element minOccurs="0" ref="KeystoreFile"/>
|
||||
<xs:element minOccurs="0" ref="MinimumTLSVersion"/>
|
||||
<xs:element minOccurs="0" ref="SelfSignedCertificates"/>
|
||||
<xs:element minOccurs="0" ref="VerifyClient"/>
|
||||
<xs:element minOccurs="0" ref="config:EntropyFile"/>
|
||||
<xs:element minOccurs="0" ref="config:KeyPassphrase"/>
|
||||
<xs:element minOccurs="0" ref="config:KeystoreFile"/>
|
||||
<xs:element minOccurs="0" ref="config:MinimumTLSVersion"/>
|
||||
<xs:element minOccurs="0" ref="config:SelfSignedCertificates"/>
|
||||
<xs:element minOccurs="0" ref="config:VerifyClient"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -1477,12 +1570,12 @@ dealing with expected system sizes, buffer sizes, &c.</p></xs:document
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="ReceiveBufferChunkSize"/>
|
||||
<xs:element minOccurs="0" ref="ReceiveBufferSize"/>
|
||||
<xs:element minOccurs="0" ref="config:ReceiveBufferChunkSize"/>
|
||||
<xs:element minOccurs="0" ref="config:ReceiveBufferSize"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ReceiveBufferChunkSize" type="memsize">
|
||||
<xs:element name="ReceiveBufferChunkSize" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element specifies the size of one allocation unit in the receive
|
||||
|
@ -1496,7 +1589,7 @@ after processing a message, or freed straightaway.</p>
|
|||
KiB&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="ReceiveBufferSize" type="memsize">
|
||||
<xs:element name="ReceiveBufferSize" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element sets the size of a single receive buffer. Many receive
|
||||
|
@ -1518,7 +1611,7 @@ running DDSI over TCP.</p></xs:documentation>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="AlwaysUsePeeraddrForUnicast"/>
|
||||
<xs:element minOccurs="0" ref="config:AlwaysUsePeeraddrForUnicast"/>
|
||||
<xs:element minOccurs="0" name="Enable">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
|
@ -1534,10 +1627,10 @@ General/Transport instead.</p><p>The default value is:
|
|||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element minOccurs="0" ref="NoDelay"/>
|
||||
<xs:element minOccurs="0" ref="Port"/>
|
||||
<xs:element minOccurs="0" ref="ReadTimeout"/>
|
||||
<xs:element minOccurs="0" ref="WriteTimeout"/>
|
||||
<xs:element minOccurs="0" ref="config:NoDelay"/>
|
||||
<xs:element minOccurs="0" ref="config:Port"/>
|
||||
<xs:element minOccurs="0" ref="config:ReadTimeout"/>
|
||||
<xs:element minOccurs="0" ref="config:WriteTimeout"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -1571,7 +1664,7 @@ by establishing connections to other services.</p><p>The default val
|
|||
is: &quot;-1&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="ReadTimeout" type="duration">
|
||||
<xs:element name="ReadTimeout" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element specifies the timeout for blocking TCP read operations.
|
||||
|
@ -1581,7 +1674,7 @@ If this timeout expires then the connection is closed.</p>
|
|||
s, min, hr, day.</p><p>The default value is: &quot;2 s&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="WriteTimeout" type="duration">
|
||||
<xs:element name="WriteTimeout" type="config:duration">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element specifies the timeout for blocking TCP write operations.
|
||||
|
@ -1607,7 +1700,7 @@ using a thread pool to send DDSI messages to multiple unicast addresses
|
|||
is: &quot;false&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element minOccurs="0" ref="ThreadMax"/>
|
||||
<xs:element minOccurs="0" ref="config:ThreadMax"/>
|
||||
<xs:element minOccurs="0" name="Threads" type="xs:integer">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
|
@ -1632,8 +1725,8 @@ pool.</p><p>The default value is: &quot;8&quot;.</p></
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="Scheduling"/>
|
||||
<xs:element minOccurs="0" ref="StackSize"/>
|
||||
<xs:element minOccurs="0" ref="config:Scheduling"/>
|
||||
<xs:element minOccurs="0" ref="config:StackSize"/>
|
||||
</xs:all>
|
||||
<xs:attribute name="Name" use="required">
|
||||
<xs:annotation>
|
||||
|
@ -1671,8 +1764,8 @@ discovery;</li>
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="Class"/>
|
||||
<xs:element minOccurs="0" ref="Priority"/>
|
||||
<xs:element minOccurs="0" ref="config:Class"/>
|
||||
<xs:element minOccurs="0" ref="config:Priority"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
@ -1704,7 +1797,7 @@ assign some of the privileged priorities.</p><p>The default value is
|
|||
&quot;default&quot;.</p></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="StackSize" type="memsize">
|
||||
<xs:element name="StackSize" type="config:memsize">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
<p>This element configures the stack size for this thread. The default
|
||||
|
@ -1726,11 +1819,11 @@ track the DDSI service during application development.</p></xs:documentati
|
|||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element minOccurs="0" ref="AppendToFile"/>
|
||||
<xs:element minOccurs="0" ref="Category"/>
|
||||
<xs:element minOccurs="0" ref="OutputFile"/>
|
||||
<xs:element minOccurs="0" ref="PacketCaptureFile"/>
|
||||
<xs:element minOccurs="0" ref="Verbosity"/>
|
||||
<xs:element minOccurs="0" ref="config:AppendToFile"/>
|
||||
<xs:element minOccurs="0" ref="config:Category"/>
|
||||
<xs:element minOccurs="0" ref="config:OutputFile"/>
|
||||
<xs:element minOccurs="0" ref="config:PacketCaptureFile"/>
|
||||
<xs:element minOccurs="0" ref="config:Verbosity"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue