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

Method ReadNext

cpp/src/arrow/json/reader.cc:450–453  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

448 [[nodiscard]] std::shared_ptr<Schema> schema() const override { return schema_; }
449
450 Status ReadNext(std::shared_ptr<RecordBatch>* out) override {
451 auto result = ReadNextAsync().result();
452 return std::move(result).Value(out);
453 }
454
455 Future<std::shared_ptr<RecordBatch>> ReadNextAsync() override {
456 // On the first call, return the batch we used for initialization

Callers 3

AssertReadNextMethod · 0.45
AssertReadEndMethod · 0.45
TEST_PFunction · 0.45

Calls 2

resultMethod · 0.45
ValueMethod · 0.45

Tested by 3

AssertReadNextMethod · 0.36
AssertReadEndMethod · 0.36
TEST_PFunction · 0.36