I am currently using Eclipse Cyclone DDS C++ and I am wondering if it is possible to send data without any key specified with #pragma keylist
in an IDL.
Is it possible to achive this through QoS-Settings? If so, how?
I am currently using Eclipse Cyclone DDS C++ and I am wondering if it is possible to send data without any key specified with #pragma keylist
in an IDL.
Is it possible to achive this through QoS-Settings? If so, how?
Copyright © 2021 Jogjafile Inc.
If you do
#pragma keylist TYPE
without listing any key fields, the IDL compiler will generate everything you need for creating a topic that doesn't have any key fields. Sois perfectly valid, and then you can create a topic for
S
.I am not entirely sure what you mean by
The above will result in a single instance for this topic. You can still have a history and so, e.g., the reader can still ensure it sees every update by specifying a
KEEP_ALL
history setting. The reader can therefore still distinguish between the writes by looking at the content and/or the sample info, but for DDS these are all updates to this one instance.No, you cannot (currently) override the key fields using the QoS settings.