The information about a JupyterLab application.

Implements

Constructors

Accessors

  • get deferred(): { matches: string[]; patterns: string[] }
  • The collection of deferred extension patterns and matched extensions.

    Returns { matches: string[]; patterns: string[] }

  • get disabled(): { matches: string[]; patterns: string[] }
  • The collection of disabled extension patterns and matched extensions.

    Returns { matches: string[]; patterns: string[] }

  • get isConnected(): boolean
  • Every periodic network polling should be paused while this is set to false. Extensions should use this value to decide whether to proceed with the polling. The extensions may also set this value to false if there is no need to fetch anything from the server backend basing on some conditions (e.g. when an error message dialog is displayed). At the same time, the extensions are responsible for setting this value back to true.

    Returns boolean

  • set isConnected(v: boolean): void
  • Every periodic network polling should be paused while this is set to false. Extensions should use this value to decide whether to proceed with the polling. The extensions may also set this value to false if there is no need to fetch anything from the server backend basing on some conditions (e.g. when an error message dialog is displayed). At the same time, the extensions are responsible for setting this value back to true.

    Parameters

    • v: boolean

    Returns void