Class: Neovim::Message::Notification Private
- Defined in:
- lib/neovim/message.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
-
#arguments ⇒ Object
Returns the value of attribute arguments.
-
#method_name ⇒ Object
Returns the value of attribute method_name.
Instance Method Summary collapse
- #received(_) {|_self| ... } ⇒ Object private
- #sync? ⇒ Boolean private
- #to_a ⇒ Object private
Instance Attribute Details
#arguments ⇒ Object
Returns the value of attribute arguments
56 57 58 |
# File 'lib/neovim/message.rb', line 56 def arguments @arguments end |
#method_name ⇒ Object
Returns the value of attribute method_name
56 57 58 |
# File 'lib/neovim/message.rb', line 56 def method_name @method_name end |
Instance Method Details
#received(_) {|_self| ... } ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
61 62 63 |
# File 'lib/neovim/message.rb', line 61 def received(_) yield self end |
#sync? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
65 66 67 |
# File 'lib/neovim/message.rb', line 65 def sync? false end |
#to_a ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
57 58 59 |
# File 'lib/neovim/message.rb', line 57 def to_a [2, method_name, arguments] end |