Current section

Files

Jump to
gen_lsp lib gen_lsp protocol requests shutdown.ex
Raw

lib/gen_lsp/protocol/requests/shutdown.ex

# codegen: do not edit
defmodule GenLSP.Requests.Shutdown do
@moduledoc """
A shutdown request is sent from the client to the server.
It is sent once when the client decides to shutdown the
server. The only notification that is sent after a shutdown request
is the exit event.
Message Direction: clientToServer
"""
import Schematic, warn: false
use TypedStruct
@derive Jason.Encoder
typedstruct do
field :method, String.t(), default: "shutdown"
field :jsonrpc, String.t(), default: "2.0"
field :id, integer(), enforce: true
field :params, nil
end
@type result :: nil
@doc false
@spec schematic() :: Schematic.t()
def schematic() do
schema(__MODULE__, %{
method: str("shutdown"),
jsonrpc: str("2.0"),
id: int(),
params: null()
})
end
@doc false
@spec result() :: Schematic.t()
def result() do
null()
end
end