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

    Interface HostedServiceContext

    Context for starting or running a hosted service during the Application lifetime.

    interface HostedServiceContext {
        delay: (milliseconds: number) => Promise<void>;
        logger: Logger;
        signal: AbortSignal;
    }
    Index
    delay: (milliseconds: number) => Promise<void>

    Cancellation-aware delay. Resolves early when the signal aborts, so a background loop never keeps the host waiting on a timer.

    logger: Logger

    Logger scoped to this hosted service.

    signal: AbortSignal

    Aborts when the application begins stopping.