| 25 | } |
| 26 | |
| 27 | void EntryThumbnailCache::buildAsync(Timestamp start_ns, Timestamp end_ns) { |
| 28 | stop(); |
| 29 | running_.store(true); |
| 30 | thread_ = std::thread(&EntryThumbnailCache::buildThread, this, start_ns, end_ns); |
| 31 | } |
| 32 | |
| 33 | void EntryThumbnailCache::stop() { |
| 34 | running_.store(false); |
no test coverage detected