Class: ActiveCypher::Bolt::Messaging::Rollback

Inherits:
Message
  • Object
show all
Defined in:
lib/active_cypher/bolt/messaging.rb

Overview

The ROLLBACK message. Because sometimes you just want to undo your mistakes.

Constant Summary collapse

SIGNATURE =
0x13

Instance Attribute Summary

Attributes inherited from Message

#fields, #signature

Instance Method Summary collapse

Methods inherited from Message

#==, inherited

Constructor Details

#initializeRollback

Returns a new instance of Rollback.



163
164
165
# File 'lib/active_cypher/bolt/messaging.rb', line 163

def initialize
  super(SIGNATURE, [])
end