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 }