Create an instance from values
| 117 | |
| 118 | /// Create an instance from values |
| 119 | TableSourceNodeOptions(std::shared_ptr<Table> table, |
| 120 | int64_t max_batch_size = kDefaultMaxBatchSize) |
| 121 | : table(std::move(table)), max_batch_size(max_batch_size) {} |
| 122 | |
| 123 | /// \brief a table which acts as the data source |
| 124 | std::shared_ptr<Table> table; |
no outgoing calls