| 86 | bool SlowInputStream::closed() const { return stream_->closed(); } |
| 87 | |
| 88 | Result<int64_t> SlowInputStream::Tell() const { return stream_->Tell(); } |
| 89 | |
| 90 | Result<int64_t> SlowInputStream::Read(int64_t nbytes, void* out) { |
| 91 | latencies_->Sleep(); |
no outgoing calls