The default connector for making inspection requests from the Jupyter API.

Hierarchy (view full)

Constructors

Properties

Methods

Constructors

Properties

_sessionContext: ISessionContext

Methods

  • Retrieve the list of items available from the data connector.

    Parameters

    • Optional query: string

      The optional query filter to apply to the connector request.

    Returns Promise<{
        ids: InspectionHandler.IRequest[];
        values: IReply[];
    }>

    A promise that always rejects with an error.

    Notes

    Subclasses should reimplement if they support a back-end that can list.

  • Remove a value using the data connector.

    Parameters

    Returns Promise<any>

    A promise that always rejects with an error.

    Notes

    Subclasses should reimplement if they support a back-end that can remove.

  • Save a value using the data connector.

    Parameters

    Returns Promise<any>

    A promise that always rejects with an error.

    Notes

    Subclasses should reimplement if they support a back-end that can save.