class Spoom::LSP::Request

A request message to describe a request between the client and the server.

Every processed request must send a response back to the sender of the request.

Attributes

id[R]
method[R]
params[R]

Public Class Methods

new(id, method, params) click to toggle source
Calls superclass method Spoom::LSP::Message::new
# File lib/spoom/sorbet/lsp/base.rb, line 37
def initialize(id, method, params)
  super()
  @id = id
  @method = method
  @params = params
end