NOLINTNEXTLINE(readability-convert-member-functions-to-static)
| 1217 | const SharedViewNodeTree& viewNodeTree) { |
| 1218 | if (viewNodeTree == nullptr) { |
| 1219 | [[maybe_unused]] auto capturedContextId = contextId; |
| 1220 | VALDI_ERROR(*self->_logger, "Could not resolve ViewNodeTree of Context {}", capturedContextId); |
| 1221 | return; |
| 1222 | } |
| 1223 | |
| 1224 | viewNodeTree->withLock([&]() { |
| 1225 | auto viewNode = viewNodeTree->getViewNode(nodeId); |
| 1226 | if (viewNode != nullptr) { |
| 1227 | handleViewNode(*viewNode, [self, callbackRef](const auto& result) { |
nothing calls this directly
no test coverage detected