Member Junction
    Preparing search index...

    Interface StreamingProviderStatus

    Per-provider streaming status displayed above the results list while a streaming search is in flight. One entry per provider that has reported back. Populated progressively as streamScopedSearch emits 'provider' events.

    interface StreamingProviderStatus {
        Count: number;
        ElapsedMs: number;
        ErrorMessage?: string;
        Name: string;
        State: "Completed" | "Error";
    }
    Index

    Properties

    Count: number

    Result count contributed by this provider

    ElapsedMs: number

    Wall-clock latency for this provider's leg, in milliseconds

    ErrorMessage?: string

    Last error message if State is 'Error'

    Name: string

    Provider name from the SearchEngine (e.g. 'Vector', 'FullText')

    State: "Completed" | "Error"

    Reported state for this provider