| 31 | namespace oid { |
| 32 | |
| 33 | void BufferAssembler::begin(BeginParams params) { |
| 34 | const auto total = params.total_byte_size; |
| 35 | auto& entry = in_progress_[params.variable_name]; |
| 36 | entry.params = std::move(params); |
| 37 | entry.bytes.assign(total, std::byte{}); |
| 38 | } |
| 39 | |
| 40 | bool BufferAssembler::chunk(const std::string& name, |
| 41 | const std::size_t row_offset, |
no outgoing calls