Sha256: 407407193bb129245231a2ebffdb0c4674dcce2a13baba9a29c0f58ff8bdc9ac

Contents?: true

Size: 985 Bytes

Versions: 4

Compression:

Stored size: 985 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 [object | any[]]
        def params
          attributes.fetch(:params)
        end

        attr_reader :attributes

        def to_hash
          attributes
        end

        def to_json(*args)
          to_hash.to_json(*args)
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
language_server-protocol-3.14.0.1 lib/language_server/protocol/interface/request_message.rb
language_server-protocol-3.14.0.0 lib/language_server/protocol/interface/request_message.rb
language_server-protocol-3.12.0.0 lib/language_server/protocol/interface/request_message.rb
language_server-protocol-3.7.0.0 lib/language_server/protocol/interface/request_message.rb