| 256 | Result<int64_t> HdfsReadableFile::GetSize() { return impl_->GetSize(); } |
| 257 | |
| 258 | Status HdfsReadableFile::Seek(int64_t position) { return impl_->Seek(position); } |
| 259 | |
| 260 | Result<int64_t> HdfsReadableFile::Tell() const { return impl_->Tell(); } |
| 261 |