@designliquido/xpath
    Preparing search index...

    Interface StreamingAnalysis

    Analysis result for a streaming expression

    interface StreamingAnalysis {
        streamable: boolean;
        posture: StreamingPosture;
        sweep: StreamingSweep;
        reason?: string;
        requiresBuffering: boolean;
        memoryFootprint: number;
    }
    Index

    Properties

    streamable: boolean

    Whether the expression is streamable

    Streaming posture

    Sweep direction

    reason?: string

    Reason why expression is not streamable (if applicable)

    requiresBuffering: boolean

    Whether expression requires buffering

    memoryFootprint: number

    Estimated memory usage (0 = no buffering, 1 = full document)