Theia API Documentation v1.65.0
    Preparing search index...
    interface NotebookKernelsExt {
        $acceptKernelMessageFromRenderer(
            handle: number,
            editorId: string,
            message: any,
        ): void;
        $acceptNotebookAssociation(
            handle: number,
            uri: UriComponents,
            value: boolean,
        ): void;
        $cancelCells(
            handle: number,
            uri: UriComponents,
            handles: number[],
        ): Promise<void>;
        $cellExecutionChanged(
            uri: UriComponents,
            cellHandle: number,
            state: undefined | NotebookCellExecutionState,
        ): void;
        $executeCells(
            handle: number,
            uri: UriComponents,
            handles: number[],
        ): Promise<void>;
        $provideKernelSourceActions(
            handle: number,
            token: CancellationToken,
        ): Promise<NotebookKernelSourceActionDto[]>;
    }
    Index

    Methods

    • Parameters

      • handle: number
      • editorId: string
      • message: any

      Returns void

    • Parameters

      Returns void

    • Parameters

      Returns Promise<void>

    • Parameters

      Returns Promise<void>