@brief Given a path, remove any existing handler for that path from both the handler container and the interface tree.
| 107 | /// @brief Given a path, remove any existing handler for that path from |
| 108 | /// both the handler container and the interface tree. |
| 109 | void ClientInterfaceObjectManager::m_removeCallbacksOnPath( |
| 110 | std::string const &path) { |
| 111 | m_interfaces.eraseHandlerForPath(path); |
| 112 | } |
| 113 | |
| 114 | void ClientInterfaceObjectManager::m_connectNeededCallbacks() { |
| 115 | auto failedPaths = std::unordered_set<std::string>{}; |
nothing calls this directly
no test coverage detected