Class: ActiveCypher::Bolt::Messaging::Reset

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

Overview

The RESET message. Because sometimes you just want to pretend nothing ever happened.

Constant Summary collapse

SIGNATURE =
0x0F

Instance Attribute Summary

Attributes inherited from Message

#fields, #signature

Instance Method Summary collapse

Methods inherited from Message

#==, inherited

Constructor Details

#initializeReset

Returns a new instance of Reset.



97
98
99
# File 'lib/active_cypher/bolt/messaging.rb', line 97

def initialize
  super(SIGNATURE, [])
end