| 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(); |
| 92 | return stream_->Read(nbytes, out); |
| 93 | } |
| 94 | |
| 95 | Result<std::shared_ptr<Buffer>> SlowInputStream::Read(int64_t nbytes) { |
| 96 | latencies_->Sleep(); |