Hello,
In my project, I need sometimes to destroy a subscriber and all its related datareaders, to instanciate them again after with the same parameters, without changing anything with participant.
The environment is .NET 4.0 / RTI DDS 5.1.0
Here is the sequence :
---subscriber intialization---
sub = participant.create_subscriber(SubQos, ...);
...
DataReader reader = sub.create_datareader_with_profile(SomeContentFilteredTopic, ..., DDS.StatusMask.STATUS_MASK_ALL);
...
reader.enable();
sub.begin_access();