TraceChunk

data class TraceChunk(val fixes: List<Fix>, val overlapWithPrevious: Int)

One request-sized window of a longer trace.

overlapWithPrevious is 0 for the first chunk and otherwise the number of leading fixes that duplicate the trailing fixes of the chunk before it — the exact count TracePreparation.stitchMatchedDistanceM needs to avoid double-counting.

Constructors

Link copied to clipboard
constructor(fixes: List<Fix>, overlapWithPrevious: Int)

Properties

Link copied to clipboard
val fixes: List<Fix>
Link copied to clipboard