| 524 | } |
| 525 | |
| 526 | void PluginMgr::registerTopicsByUID(const String& deviceId, IPluginMaintenance* plugin) |
| 527 | { |
| 528 | if (nullptr != plugin) |
| 529 | { |
| 530 | String entityId = getEntityIdByPluginUid(plugin->getUID()); |
| 531 | |
| 532 | TopicHandlerService::getInstance().registerTopics(m_deviceId, entityId.c_str(), plugin); |
| 533 | } |
| 534 | } |
| 535 | |
| 536 | void PluginMgr::unregisterTopicsByUID(const String& deviceId, IPluginMaintenance* plugin, bool purge) |
| 537 | { |
nothing calls this directly
no test coverage detected