Datalayer VS Code Extension - v0.0.9
    Preparing search index...

    WebSocket-based kernel client for Jupyter protocol communication. Handles connection, execution, and message processing for native notebooks.

    Index

    Constructors

    Properties

    _connected: boolean = false

    Connection status flag

    _connecting: boolean = false

    Connection attempt in progress flag

    _kernelId: string

    Kernel ID assigned by the Jupyter server

    _pendingRequests: Map<
        string,
        {
            outputs: ExecutionOutput[];
            reject: (error: Error) => void;
            resolve: (result: ExecutionResult) => void;
        },
    > = ...

    Map of pending execution requests awaiting replies

    _runtime: RuntimeJSON

    Runtime configuration and credentials

    _sessionId: string

    Unique session identifier for this client

    _ws: WebSocket

    WebSocket connection instance

    Methods