Class: ActiveCypher::Bolt::Messaging::EmptyMessage
- Defined in:
- lib/active_cypher/bolt/messaging.rb
Overview
Base for messages that carry no fields at all. Subclasses only need to define their SIGNATURE.
Instance Attribute Summary
Attributes inherited from Message
Instance Method Summary collapse
-
#initialize ⇒ EmptyMessage
constructor
A new instance of EmptyMessage.
Methods inherited from Message
Constructor Details
#initialize ⇒ EmptyMessage
Returns a new instance of EmptyMessage.
86 87 88 |
# File 'lib/active_cypher/bolt/messaging.rb', line 86 def initialize super(self.class::SIGNATURE, []) end |