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[]>;
    }

    Implemented by

    Index

    Methods