| 448 | } |
| 449 | |
| 450 | int64_t Tablet::SetUpdateTime(int64_t timestamp) { |
| 451 | MutexLock lock(&mutex_); |
| 452 | int64_t ts = update_time_; |
| 453 | update_time_ = timestamp; |
| 454 | return ts; |
| 455 | } |
| 456 | |
| 457 | int64_t Tablet::ReadyTime() { |
| 458 | MutexLock lock(&mutex_); |
no outgoing calls
no test coverage detected