Table of Contents

Struct ChunkWireHeader

Namespace
Typhon.Profiler
Assembly
Typhon.Profiler.dll

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

uint

Magic

Envelope magic — MagicValue. Lets the client key its chunk cache without an LZ4 decode first.

public uint Magic

Field Value

uint

MagicValue

Envelope magic constant: ASCII "TPCK" (little-endian).

public const uint MagicValue = 1262702676

Field Value

uint

RecordCount

Number of records in the chunk (after fold).

public uint RecordCount

Field Value

uint

ToTick

First tick NOT included in the chunk (exclusive).

public uint ToTick

Field Value

uint