MCPcopy Create free account
hub / github.com/MITK/MITK / FindDataNode

Method FindDataNode

Modules/RESTAPI/src/mitkDataStorageBridge.cpp:886–893  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

884 }
885
886 DataNode::ConstPointer DataStorageBridge::FindDataNode(const std::string& uid) const
887 {
888 std::lock_guard<std::mutex> lock(m_Mutex);
889 return this->DispatchTask<DataNode::ConstPointer>([this, uid]()
890 {
891 return DataNode::ConstPointer(m_UidMapper->FindNodeByUid(uid));
892 });
893 }
894
895 DataStorageBridge::OperationStatus DataStorageBridge::SetNodeData(const std::string& uid, BaseData* data)
896 {

Calls 1

FindNodeByUidMethod · 0.80