MCPcopy Create free account
hub / github.com/OpenImageDebugger/OpenImageDebugger / handle_plot_buffer_chunk

Method handle_plot_buffer_chunk

src/host/ipc/ipc_client.cpp:180–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

178}
179
180void 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
193void IpcClient::handle_plot_buffer_end() {
194 std::string name;

Callers

nothing calls this directly

Calls 1

chunkMethod · 0.80

Tested by

no test coverage detected