-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use DDS_IGNORELOCAL_PROCESS with C++ API #139
Comments
Hi @elfenpiff, it looks like it was overlooked in the C++ API, so it needs to be added — and I have to say the workaround you tried would have been a rather nifty one if only it had worked. In principle, adding it just means adding it to a bunch of files following the pattern set by all the other QoS settings. That is, define the policy and its settings, implement conversion routines and extend the A quick hack would be to add it to |
I have a setup where I have a DDS reader and a DDS writer in the same process but would like to avoid that the DDS writer delivers to the local DDS reader.
In the C API I discovered the QoS
DDS_IGNORELOCAL_PROCESS
which is not supported by the C++ API. Nevertheless, I tried to apply it like the code below shows it but it does not seem to workDid I use it wrongly or is the
IGNORELOCAL_PROCESS
QoS feature not at all supported with the C++ API? If so, is there a way to achieve the same behavior in C++?The text was updated successfully, but these errors were encountered: