| 1978 | } |
| 1979 | |
| 1980 | void ClientRequestState::MarkInactive() { |
| 1981 | client_wait_sw_.Start(); |
| 1982 | lock_guard<mutex> l(expiration_data_lock_); |
| 1983 | last_active_time_ms_ = UnixMillis(); |
| 1984 | DCHECK(ref_count_ > 0) << "Invalid MarkInactive()"; |
| 1985 | --ref_count_; |
| 1986 | } |
| 1987 | |
| 1988 | void ClientRequestState::MarkActive() { |
| 1989 | client_wait_sw_.Stop(); |
nothing calls this directly
no test coverage detected