Interface NotebookDocumentService


  • public interface NotebookDocumentService
    • Method Detail

      • didOpen

        void didOpen​(DidOpenNotebookDocumentParams params)
        The open notification is sent from the client to the server when a notebook document is opened. It is only sent by a client if the server requested the synchronization mode notebook in its ServerCapabilities.notebookDocumentSync capability.

        Registration Options: NotebookDocumentSyncRegistrationOptions

        Since 3.17.0

      • didChange

        void didChange​(DidChangeNotebookDocumentParams params)
        The change notification is sent from the client to the server when a notebook document changes. It is only sent by a client if the server requested the synchronization mode notebook in its ServerCapabilities.notebookDocumentSync capability.

        Registration Options: NotebookDocumentSyncRegistrationOptions

        Since 3.17.0

      • didSave

        void didSave​(DidSaveNotebookDocumentParams params)
        The save notification is sent from the client to the server when a notebook document is saved. It is only sent by a client if the server requested the synchronization mode notebook in its ServerCapabilities.notebookDocumentSync capability.

        Registration Options: NotebookDocumentSyncRegistrationOptions

        Since 3.17.0

      • didClose

        void didClose​(DidCloseNotebookDocumentParams params)
        The close notification is sent from the client to the server when a notebook document is closed. It is only sent by a client if the server requested the synchronization mode notebook in its ServerCapabilities.notebookDocumentSync capability.

        Registration Options: NotebookDocumentSyncRegistrationOptions

        Since 3.17.0