Class: LanguageServer::Protocol::Interface::NotificationMessage
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::NotificationMessage
- Defined in:
- lib/language_server/protocol/interface/notification_message.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(jsonrpc:, method:, params: nil) ⇒ NotificationMessage
constructor
A new instance of NotificationMessage.
- #jsonrpc ⇒ string
-
#method ⇒ string
The method to be invoked.
-
#params ⇒ any
The notification’s params.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
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
#attributes ⇒ Object (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
#jsonrpc ⇒ string
16 17 18 |
# File 'lib/language_server/protocol/interface/notification_message.rb', line 16 def jsonrpc attributes.fetch(:jsonrpc) end |
#method ⇒ string
The method to be invoked.
24 25 26 |
# File 'lib/language_server/protocol/interface/notification_message.rb', line 24 def method attributes.fetch(:method) end |
#params ⇒ any
The notification’s params.
32 33 34 |
# File 'lib/language_server/protocol/interface/notification_message.rb', line 32 def params attributes.fetch(:params) end |
#to_hash ⇒ Object
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 |