Sha256: c015d404f024510c6223318615e857d30898986404da7b4b0004d417f90458c7
Contents?: true
Size: 923 Bytes
Versions: 1
Compression:
Stored size: 923 Bytes
Contents
module LanguageServer module Protocol module Interface class RequestMessage < Message def initialize(jsonrpc:, id:, method:, params: nil) @attributes = {} @attributes[:id] = id @attributes[:method] = method @attributes[:params] = params if params @attributes.freeze end # # The request id. # # @return [string | number] def id attributes.fetch(:id) end # # The method to be invoked. # # @return [string] def method attributes.fetch(:method) end # # The method's params. # # @return [any] def params attributes.fetch(:params) end attr_reader :attributes def to_json(*args) attributes.to_json(*args) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
language_server-protocol-0.4.0 | lib/language_server/protocol/interface/request_message.rb |