Class: ActiveCypher::Bolt::Messaging::Record
- Defined in:
- lib/active_cypher/bolt/messaging.rb
Overview
The RECORD message. For when you actually get data back, against all odds.
Constant Summary collapse
- SIGNATURE =
0x71
Instance Attribute Summary
Attributes inherited from Message
Instance Method Summary collapse
-
#initialize(values) ⇒ Record
constructor
A new instance of Record.
- #values ⇒ Object
Methods inherited from Message
Constructor Details
#initialize(values) ⇒ Record
266 267 268 |
# File 'lib/active_cypher/bolt/messaging.rb', line 266 def initialize(values) super(SIGNATURE, [values]) end |
Instance Method Details
#values ⇒ Object
270 271 272 |
# File 'lib/active_cypher/bolt/messaging.rb', line 270 def values fields.first end |