Replies: 1 comment
-
Hi @hutorny, thanks for using Fast DDS.
That may be caused by a Reader that has not performed the
You should also take into account that the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A writer creates an instance by writing data to its topic. Eventually, that instance may become not relevant and writer needs to remove it, so that existing subscribers get rid of it, and late subscribers would not get an irrelevant instance. Fast DDS API provides method
dispose
, described asThis operation requests the middleware to delete the data (the actual deletion is postponed until there is no more use for that data in the whole system).
In my application
dispose
has no effect. I guess, no more use condition is not satisfied.Is there a way to forcefully remove an instance?
Beta Was this translation helpful? Give feedback.
All reactions