Class: ActiveCypher::Bolt::Messaging::Goodbye

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

Overview

The GOODBYE message. For when you’ve had enough of this session, or life.

Constant Summary collapse

SIGNATURE =
0x02

Instance Attribute Summary

Attributes inherited from Message

#fields, #signature

Instance Method Summary collapse

Methods inherited from Message

#==, inherited

Constructor Details

#initializeGoodbye

Returns a new instance of Goodbye.



88
89
90
# File 'lib/active_cypher/bolt/messaging.rb', line 88

def initialize
  super(SIGNATURE, [])
end