C++11 xml QOS

5 posts / 0 new
Last post
Offline
Last seen: 6 months 3 weeks ago
Joined: 10/09/2022
Posts: 13
Will the different instances be delivered to DataReader in write time order strictly?

Suppose the following IDL:

struct Data {

    string name; //@key

    long id;

}

A DataWriter writes the following samples in time order:
{ "A", 1 }, { "B", 1 }, { "A", 2 }, { "B", 2 }

For  RELIABLE_RELIABILITY_QOS, will RTI DDS guarantees that the reader application take the samples in the write time order?
Or the samples may be sorted by key, such as: { "A", 1 }, { "A", 2 }, { "B", 1 }, { "B", 2 }

Keywords:
4 posts / 0 new
Last post
Offline
Last seen: 6 months 3 weeks ago
Joined: 10/09/2022
Posts: 13
Confusion about disposed instances

Suppose the following IDL:

struct Data { @key string name; long id; }

Scenario 1:

Suppose there are two writers  (KEEP_ALL_HISTORY_QOS + RELIABLE_RELIABILITY_QOS) in different nodes write the instances as the following order:
Writer 1               Writer 2
{ "A", 1 }
                           { "A", 2 }
dispose "A"

Keywords:
5 posts / 0 new
Last post
Offline
Last seen: 6 months 3 weeks ago
Joined: 10/09/2022
Posts: 13
Can the samples written on_publication_matched() be delivered to the readers reliably?

Suppose the following scenario:
One writer with QoS: KEEP_ALL_HISTORY_QOS + RELIABLE_RELIABILITY_QOS + VOLATILE_DURABILITY_QOS.

Keywords:
5 posts / 0 new
Last post
Offline
Last seen: 1 year 5 months ago
Joined: 10/02/2022
Posts: 3
C++11 creating participants and applying QOS using XML approach

Hello Team RTI,


I am trying to use XML approach for creating participants using C++11.
Using the sample provided within RTI help, the readers/ writers works quite well.

Now i am stuck as i am not able to apply qos to reader/writers.

In this regard can you please share a sample on how to apply custom qos using xml.

Below is xml with custom qos profiles.

Organization:
Keywords:
Subscribe to RSS - C++11 xml QOS