You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that I've begun integration in Sediment, I realized that I would prefer chunk data to be written as:
Chunk command byte
Length (4 bytes)
Data (Length bytes)
CRC (4 bytes)
By moving the CRC to the end, we can compute it on the fly, which would allow for a ChunkWriter type that could implement Write and allow buffered streaming chunk writing.
The text was updated successfully, but these errors were encountered:
Now that I've begun integration in Sediment, I realized that I would prefer chunk data to be written as:
By moving the CRC to the end, we can compute it on the fly, which would allow for a
ChunkWriter
type that could implementWrite
and allow buffered streaming chunk writing.The text was updated successfully, but these errors were encountered: