Class: LanguageServer::Protocol::Interface::ResponseMessage
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::ResponseMessage
- Defined in:
- lib/language_server/protocol/interface/response_message.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#error ⇒ ResponseError
The error object in case a request fails.
-
#id ⇒ string | number
The request id.
-
#initialize(jsonrpc:, id:, result: nil, error: nil) ⇒ ResponseMessage
constructor
A new instance of ResponseMessage.
- #jsonrpc ⇒ string
-
#result ⇒ string | number | boolean | object
The result of a request.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(jsonrpc:, id:, result: nil, error: nil) ⇒ ResponseMessage
Returns a new instance of ResponseMessage.
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/language_server/protocol/interface/response_message.rb', line 5 def initialize(jsonrpc:, id:, result: nil, error: nil) @attributes = {} @attributes[:jsonrpc] = jsonrpc @attributes[:id] = id @attributes[:result] = result if result @attributes[:error] = error if error @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
46 47 48 |
# File 'lib/language_server/protocol/interface/response_message.rb', line 46 def attributes @attributes end |
Instance Method Details
#error ⇒ ResponseError
The error object in case a request fails.
42 43 44 |
# File 'lib/language_server/protocol/interface/response_message.rb', line 42 def error attributes.fetch(:error) end |
#id ⇒ string | number
The request id.
25 26 27 |
# File 'lib/language_server/protocol/interface/response_message.rb', line 25 def id attributes.fetch(:id) end |
#jsonrpc ⇒ string
17 18 19 |
# File 'lib/language_server/protocol/interface/response_message.rb', line 17 def jsonrpc attributes.fetch(:jsonrpc) end |
#result ⇒ string | number | boolean | object
The result of a request. This member is REQUIRED on success. This member MUST NOT exist if there was an error invoking the method.
34 35 36 |
# File 'lib/language_server/protocol/interface/response_message.rb', line 34 def result attributes.fetch(:result) end |
#to_hash ⇒ Object
48 49 50 |
# File 'lib/language_server/protocol/interface/response_message.rb', line 48 def to_hash attributes end |
#to_json(*args) ⇒ Object
52 53 54 |
# File 'lib/language_server/protocol/interface/response_message.rb', line 52 def to_json(*args) to_hash.to_json(*args) end |