| 205 | { |
| 206 | public: |
| 207 | int64_t GetUID(const int64_t worker_id) override |
| 208 | { |
| 209 | std::lock_guard<std::mutex> lock(mutex_); |
| 210 | return NextID(worker_id); |
| 211 | } |
| 212 | |
| 213 | private: |
| 214 | mutable std::mutex mutex_; |
nothing calls this directly
no outgoing calls
no test coverage detected