| 408 | } |
| 409 | |
| 410 | void VlrCatalog::insert(const VlrCatalog::Entry& entry) |
| 411 | { |
| 412 | std::unique_lock<std::mutex> l(m_mutex); |
| 413 | |
| 414 | m_entries.push_back(entry); |
| 415 | } |
| 416 | |
| 417 | std::vector<char> VlrCatalog::fetch(const std::string& userId, uint16_t recordId) const |
| 418 | { |
no outgoing calls