Class: ActiveCypher::Bolt::Messaging::Logoff

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

Overview

The LOGOFF message. For when you want to leave quietly, without making a scene.

Constant Summary collapse

SIGNATURE =
0x6B

Instance Attribute Summary

Attributes inherited from Message

#fields, #signature

Instance Method Summary collapse

Methods inherited from Message

#==, inherited

Constructor Details

#initializeLogoff

Returns a new instance of Logoff.



229
230
231
# File 'lib/active_cypher/bolt/messaging.rb', line 229

def initialize
  super(SIGNATURE, [])
end