Struct ChunkWireHeader
Wire envelope shipped at the start of each HTTP chunk response (uncompressed prefix, then the LZ4 payload). Identifies the chunk for the client's cache key without requiring a LZ4 decode first.
public struct ChunkWireHeader
- Inherited Members
Fields
FromTick
First tick included in the chunk (inclusive).
public uint FromTick
Field Value
Magic
Envelope magic — MagicValue. Lets the client key its chunk cache without an LZ4 decode first.
public uint Magic
Field Value
MagicValue
Envelope magic constant: ASCII "TPCK" (little-endian).
public const uint MagicValue = 1262702676
Field Value
RecordCount
Number of records in the chunk (after fold).
public uint RecordCount
Field Value
ToTick
First tick NOT included in the chunk (exclusive).
public uint ToTick