| 129 | } |
| 130 | |
| 131 | Result<int64_t> SlowRandomAccessFile::ReadAt(int64_t position, int64_t nbytes, |
| 132 | void* out) { |
| 133 | latencies_->Sleep(); |
| 134 | return stream_->ReadAt(position, nbytes, out); |
| 135 | } |
| 136 | |
| 137 | Result<std::shared_ptr<Buffer>> SlowRandomAccessFile::ReadAt(int64_t position, |
| 138 | int64_t nbytes) { |