Interface StreamingIndexResult<TypeIDType>

The output of a streaming index build: the same element index a resident parseDataBlock produces, plus the header and window diagnostics.

interface StreamingIndexResult<TypeIDType> {
    elements: StepIndexEntry<TypeIDType>[];
    header: StepHeader;
    result: ParseResult;
    stats: StreamingIndexStats;
}

Type Parameters

  • TypeIDType

Properties

header: StepHeader
result: ParseResult