| 1534 | } // namespace internal |
| 1535 | |
| 1536 | Result<std::shared_ptr<RecordBatchWriter>> MakeStreamWriter( |
| 1537 | io::OutputStream* sink, const std::shared_ptr<Schema>& schema, |
| 1538 | const IpcWriteOptions& options) { |
| 1539 | return std::make_shared<internal::IpcFormatWriter>( |
| 1540 | std::make_unique<internal::PayloadStreamWriter>(sink, options), schema, options, |
| 1541 | /*is_file_format=*/false); |
| 1542 | } |
| 1543 | |
| 1544 | Result<std::shared_ptr<RecordBatchWriter>> MakeStreamWriter( |
| 1545 | std::shared_ptr<io::OutputStream> sink, const std::shared_ptr<Schema>& schema, |
no outgoing calls