Hello,
When working on network streams, it happens that binary protocol chunks are split randomly by routers or whatever is on the path between the client or the server.
I understand that restructure decoding works via DecodeStream(buffer) and that the buffer needs to match the structure boundaries (maybe my understanding is not correct)
The closest explanation/partial solution to what I mean is described on https://stackoverflow.com/questions/52267098/whats-the-fastest-way-to-parse-node-js-buffer-stream-chunks-binary-data-into-s/52333431
Is there a plan to make DecodeStream work with streams and be aware of boundary issues ?
Hello,
When working on network streams, it happens that binary protocol chunks are split randomly by routers or whatever is on the path between the client or the server.
I understand that
restructuredecoding works viaDecodeStream(buffer)and that thebufferneeds to match the structure boundaries (maybe my understanding is not correct)The closest explanation/partial solution to what I mean is described on https://stackoverflow.com/questions/52267098/whats-the-fastest-way-to-parse-node-js-buffer-stream-chunks-binary-data-into-s/52333431
Is there a plan to make
DecodeStreamwork with streams and be aware of boundary issues ?