| 178 | } |
| 179 | |
| 180 | void IpcClient::handle_plot_buffer_chunk() { |
| 181 | std::string name; |
| 182 | std::size_t row_offset{}; |
| 183 | std::size_t row_count{}; |
| 184 | std::vector<std::byte> bytes; |
| 185 | oid::MessageDecoder{transport_} |
| 186 | .read(name) |
| 187 | .read(row_offset) |
| 188 | .read(row_count) |
| 189 | .read(bytes); |
| 190 | (void)assembler_.chunk(name, row_offset, row_count, bytes); |
| 191 | } |
| 192 | |
| 193 | void IpcClient::handle_plot_buffer_end() { |
| 194 | std::string name; |