@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface HostedServiceStopContext

    Context for stopping a hosted service.

    Deliberately carries no UI capability: VS Code APIs may already be unavailable during shutdown, and there is a hard budget to respect.

    interface HostedServiceStopContext {
        logger: Logger;
        remainingMs: () => number;
        signal: AbortSignal;
    }
    Index
    logger: Logger

    Logger scoped to this hosted service.

    remainingMs: () => number

    Milliseconds left in the shared shutdown budget, recomputed on each call.

    signal: AbortSignal

    Already aborted; cleanup may pass it to work that accepts cancellation.