Class: LanguageServer::Protocol::Interfaces::NotificationMessage
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interfaces::NotificationMessage
- Defined in:
- lib/language_server/protocol/interfaces/notification_message.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#initialize(method:, params: nil) ⇒ NotificationMessage
constructor
A new instance of NotificationMessage.
-
#method ⇒ string
The method to be invoked.
-
#params ⇒ any
The notification’s params.
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(method:, params: nil) ⇒ NotificationMessage
Returns a new instance of NotificationMessage.
5 6 7 8 9 10 11 12 |
# File 'lib/language_server/protocol/interfaces/notification_message.rb', line 5 def initialize(method:, params: nil) @attributes = {} @attributes[:method] = method @attributes[:params] = params if params @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
30 31 32 |
# File 'lib/language_server/protocol/interfaces/notification_message.rb', line 30 def attributes @attributes end |
Instance Method Details
#method ⇒ string
The method to be invoked.
18 19 20 |
# File 'lib/language_server/protocol/interfaces/notification_message.rb', line 18 def method attributes.fetch(:method) end |
#params ⇒ any
The notification’s params.
26 27 28 |
# File 'lib/language_server/protocol/interfaces/notification_message.rb', line 26 def params attributes.fetch(:params) end |
#to_json(*args) ⇒ Object
32 33 34 |
# File 'lib/language_server/protocol/interfaces/notification_message.rb', line 32 def to_json(*args) attributes.to_json(*args) end |