Class: LanguageServer::Protocol::Interface::NotificationMessage

Inherits:
Object
  • Object
show all
Defined in:
lib/language_server/protocol/interface/notification_message.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(jsonrpc:, method:, params: nil) ⇒ NotificationMessage

Returns a new instance of NotificationMessage.



5
6
7
8
9
10
11
12
13
# File 'lib/language_server/protocol/interface/notification_message.rb', line 5

def initialize(jsonrpc:, method:, params: nil)
  @attributes = {}

  @attributes[:jsonrpc] = jsonrpc
  @attributes[:method] = method
  @attributes[:params] = params if params

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



36
37
38
# File 'lib/language_server/protocol/interface/notification_message.rb', line 36

def attributes
  @attributes
end

Instance Method Details

#jsonrpcstring

Returns:

  • (string)


16
17
18
# File 'lib/language_server/protocol/interface/notification_message.rb', line 16

def jsonrpc
  attributes.fetch(:jsonrpc)
end

#methodstring

The method to be invoked.

Returns:

  • (string)


24
25
26
# File 'lib/language_server/protocol/interface/notification_message.rb', line 24

def method
  attributes.fetch(:method)
end

#paramsany

The notification’s params.

Returns:

  • (any)


32
33
34
# File 'lib/language_server/protocol/interface/notification_message.rb', line 32

def params
  attributes.fetch(:params)
end

#to_hashObject



38
39
40
# File 'lib/language_server/protocol/interface/notification_message.rb', line 38

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



42
43
44
# File 'lib/language_server/protocol/interface/notification_message.rb', line 42

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