| 34 | } |
| 35 | |
| 36 | void ContentRepository::reset() { |
| 37 | std::lock_guard<std::mutex> lock(count_map_mutex_); |
| 38 | count_map_.clear(); |
| 39 | } |
| 40 | |
| 41 | std::shared_ptr<ContentSession> ContentRepository::createSession() { |
| 42 | return std::make_shared<ContentSession>(sharedFromThis()); |
no test coverage detected