PARTITION
-
The PARTITION QoS policy allows the creation of logical partitions within a domain. It only allows data readers and data writers to be associated if they have matched partition strings. This policy applies to the publisher and subscriber entities via the
partition
member of their respective QoS structures. Below is the IDL related to the partition QoS policy.
-
-
struct PartitionQosPolicy {
-
StringSeq name;
-
};
-
-
The
name
member defaults to an empty sequence of strings. The default partition name is an empty string and causes the entity to participate in the default partition. The partition names may contain wildcard characters as defined by the POSIX
fnmatch
function (POSIX 1003.2-1992 section B.6).
-
The establishment of data reader and data writer associations depends on matching partition strings on the publication and subscription ends. Failure to match partitions is not considered a failure and does not trigger any callbacks or set any status values.
-
The value of this policy may be changed at any time. Changes to this policy may cause associations to be removed or added.