MCPcopy Create free account
hub / github.com/apache/arrow / Read

Method Read

cpp/src/arrow/filesystem/gcsfs.cc:273–276  ·  view source on GitHub ↗

@{ @name Readable

Source from the content-addressed store, hash-verified

271 //@{
272 // @name Readable
273 Result<int64_t> Read(int64_t nbytes, void* out) override {
274 ARROW_RETURN_NOT_OK(InitializeStream());
275 return stream_->Read(nbytes, out);
276 }
277 Result<std::shared_ptr<Buffer>> Read(int64_t nbytes) override {
278 ARROW_RETURN_NOT_OK(InitializeStream());
279 return stream_->Read(nbytes);

Callers

nothing calls this directly

Calls 1

ReadMethod · 0.45

Tested by

no test coverage detected