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

Method BufferedInputStream

cpp/src/arrow/io/buffered.cc:474–478  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

472};
473
474BufferedInputStream::BufferedInputStream(std::shared_ptr<InputStream> raw,
475 MemoryPool* pool,
476 int64_t raw_total_bytes_bound) {
477 impl_ = std::make_unique<Impl>(std::move(raw), pool, raw_total_bytes_bound);
478}
479
480BufferedInputStream::~BufferedInputStream() { internal::CloseFromDestructor(this); }
481

Calls

no outgoing calls