| 104 | } |
| 105 | |
| 106 | GuidAddrSet::~GuidAddrSet() |
| 107 | { |
| 108 | if (rejected_address_expiration_task_) { |
| 109 | rejected_address_expiration_task_->cancel(); |
| 110 | } |
| 111 | if (deactivation_task_) { |
| 112 | deactivation_task_->cancel(); |
| 113 | } |
| 114 | if (expiration_task_) { |
| 115 | expiration_task_->cancel(); |
| 116 | } |
| 117 | if (drain_task_) { |
| 118 | drain_task_->cancel(); |
| 119 | } |
| 120 | |
| 121 | TheServiceParticipant->config_topic()->disconnect(config_reader_); |
| 122 | } |
| 123 | |
| 124 | GuidAddrSet::CreatedAddrSetStats GuidAddrSet::find_or_create(const OpenDDS::DCPS::GUID_t& guid, |
| 125 | const OpenDDS::DCPS::MonotonicTimePoint& now) |
nothing calls this directly
no test coverage detected