Merge 4855fd0b9e
into 9dc1656592
commit
832aa6be3d
|
@ -292,6 +292,16 @@ class LanguageServer extends AdvancedJsonRpc\Dispatcher
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* The initialized notification is sent from the client to the server after the client received the result of
|
||||
* the initialize request but before the client is sending any other request or notification to the server.
|
||||
* The server can use the initialized notification for example to dynamically register capabilities.
|
||||
* The initialized notification may only be sent once.
|
||||
*/
|
||||
public function initialized() {
|
||||
// Do nothing
|
||||
}
|
||||
|
||||
/**
|
||||
* The shutdown request is sent from the client to the server. It asks the server to shut down, but to not exit
|
||||
* (otherwise the response might not be delivered correctly to the client). There is a separate exit notification that
|
||||
|
|
Loading…
Reference in New Issue