We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I run the example FastDDS/examples/DDS/LateJoiners, build with CMake. and run exe.
application behavior should be according to the readme
issue - but I am not receiving anything from Volatile Subscriber
also tried changing wqos.durability().kind = VOLATILE_DURABILITY_QOS; still same result, VOLATILE subscriber not receiving anyhting
Transient-Local is okay, it holds 40 samples
The text was updated successfully, but these errors were encountered:
putting sleep after creation of myReader2 resolved the problem
DataReader* myReader2 = mySub2->create_datareader(SubTopic, rvqos);
if (myReader2 == nullptr) { std::cout << "something went wrong while creating the Volatile Subscriber DataReader..." << std::endl; return; }
std::this_thread::sleep_for(std::chrono::milliseconds(100)); // sleep after myReader2
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I run the example FastDDS/examples/DDS/LateJoiners, build with CMake. and run exe.
application behavior should be according to the readme
issue - but I am not receiving anything from Volatile Subscriber
also tried changing wqos.durability().kind = VOLATILE_DURABILITY_QOS;
still same result, VOLATILE subscriber not receiving anyhting
Transient-Local is okay, it holds 40 samples
The text was updated successfully, but these errors were encountered: