Better comment

This commit is contained in:
Kruglov Pavel 2023-01-23 15:31:07 +01:00 committed by GitHub
parent 86336940f8
commit 84200be7d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,8 @@ public:
arrow::Result<std::shared_ptr<arrow::Buffer>> Read(int64_t nbytes) override;
/// Override async reading to avoid using internal arrow thread pool.
/// In our code we don't use async reading, so implementation is sync,
/// we just call ReadAt and return future with rady value.
arrow::Future<std::shared_ptr<arrow::Buffer>> ReadAsync(const arrow::io::IOContext&, int64_t position, int64_t nbytes) override;
arrow::Status Seek(int64_t position) override;