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

    Interface ApplicationInspection

    What an Application still owns, as plain data.

    Extends the Host's view — scopes and state — with the work only the Application knows about: which hosted services are up, and which operations have not settled. Names and counts only.

    interface ApplicationInspection {
        backgroundTasks: number;
        hostedServices: readonly string[];
        operations: readonly string[];
        registrations: ScopeInspection | undefined;
        resources: ScopeInspection | undefined;
        state: HostState;
    }

    Hierarchy (View Summary)

    Index
    backgroundTasks: number

    Background hosted-service loops still being tracked.

    hostedServices: readonly string[]

    Hosted services that started and have not stopped, in start order.

    operations: readonly string[]

    Ids of operations that started and have not settled.

    registrations: ScopeInspection | undefined

    Synchronous registrations, or undefined before start() runs.

    resources: ScopeInspection | undefined

    Asynchronous resources, or undefined before start() runs.

    state: HostState

    Current lifecycle state.