Class: ReadyForQuery

Inherits:
Message show all
Defined in:
lib/postgres-pr/message.rb

Constant Summary

Constants inherited from Message

Message::MsgTypeMap

Instance Method Summary collapse

Methods inherited from Message

create, dump, fields, read, register_message_type

Instance Method Details

#dumpObject



245
246
247
248
249
# File 'lib/postgres-pr/message.rb', line 245

def dump
  super(1) do |buffer|
    buffer.write_byte(@backend_transaction_status_indicator)
  end
end

#parse(buffer) ⇒ Object



251
252
253
254
255
# File 'lib/postgres-pr/message.rb', line 251

def parse(buffer)
  super do
    @backend_transaction_status_indicator = buffer.read_byte
  end
end