Sha256: f7b409cbaf23cc8ed039af366dc0c3da7dad5a06ceddf9044db75e1ade870e9d
Contents?: true
Size: 1.39 KB
Versions: 3
Compression:
Stored size: 1.39 KB
Contents
module Carrot::AMQP class Frame #:nodoc: all def initialize payload = nil, channel = 0 @channel, @payload = channel, payload end attr_accessor :channel, :payload def id self.class::ID end def to_binary buf = Buffer.new buf.write :octet, id buf.write :short, channel buf.write :longstr, payload buf.write :octet, FOOTER buf.rewind buf end def to_s to_binary.to_s end def == frame [ :id, :channel, :payload ].inject(true) do |eql, field| eql and __send__(field) == frame.__send__(field) end end class Invalid < StandardError; end class Method def initialize payload = nil, channel = 0 super unless @payload.is_a? Protocol::Class::Method or @payload.nil? @payload = Protocol.parse(@payload) end end end class Header def initialize payload = nil, channel = 0 super unless @payload.is_a? Protocol::Header or @payload.nil? @payload = Protocol::Header.new(@payload) end end end class Body; end def self.parse(buf) buf = Buffer.new(buf) unless buf.is_a? Buffer buf.extract do id, channel, payload, footer = buf.read(:octet, :short, :longstr, :octet) Frame.types[id].new(payload, channel) if footer == FOOTER end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
carrot-1.2.0 | lib/carrot/amqp/frame.rb |
carrot-1.1.0 | lib/carrot/amqp/frame.rb |
carrot-1.0.0 | lib/carrot/amqp/frame.rb |