| 100 | } |
| 101 | |
| 102 | void |
| 103 | RemoteTagCache::Item::OnRemoteTag(Tag &&_tag) noexcept |
| 104 | { |
| 105 | tag = std::move(_tag); |
| 106 | |
| 107 | scanner.reset(); |
| 108 | |
| 109 | const std::lock_guard lock{parent.mutex}; |
| 110 | parent.ItemResolved(*this); |
| 111 | } |
| 112 | |
| 113 | void |
| 114 | RemoteTagCache::Item::OnRemoteTagError(std::exception_ptr e) noexcept |
no test coverage detected