Parent

Methods

Class/Module Index [+]

Quicksearch

AMQ::Client::Framing::IO::Frame

Public Class Methods

decode(io) click to toggle source
# File lib/amq/client/framing/io/frame.rb, line 10
def self.decode(io)
  header = io.read(7)
  type, channel, size = self.decode_header(header)
  data = io.read(size + 1)
  payload, frame_end = data[0..-2], data[-1, 1]
  # TODO: this will hang if the size is bigger than expected or it'll leave there some chars -> make it more error-proof:
  # BTW: socket#eof?
  raise NoFinalOctetError.new if frame_end != AMQ::Protocol::Frame::FINAL_OCTET
  self.new(type, payload, channel)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.