Class: AMQ::Protocol::Channel::Close
- Defined in:
- lib/amq/protocol/client.rb
Instance Attribute Summary collapse
-
#class_id ⇒ Object
readonly
Returns the value of attribute class_id.
-
#method_id ⇒ Object
readonly
Returns the value of attribute method_id.
-
#reply_code ⇒ Object
readonly
Returns the value of attribute reply_code.
-
#reply_text ⇒ Object
readonly
Returns the value of attribute reply_text.
Class Method Summary collapse
- .decode(data) ⇒ Object
-
.encode(channel, reply_code, reply_text, class_id, method_id) ⇒ Object
[u’reply_code = nil’, u’reply_text = EMPTY_STRING’, u’class_id = nil’, u’method_id = nil’].
- .has_content? ⇒ Boolean
Instance Method Summary collapse
-
#initialize(reply_code, reply_text, class_id, method_id) ⇒ Close
constructor
A new instance of Close.
Methods inherited from Method
encode_body, index, inherited, instantiate, method_id, methods, name, split_headers
Constructor Details
#initialize(reply_code, reply_text, class_id, method_id) ⇒ Close
Returns a new instance of Close.
773 774 775 776 777 778 |
# File 'lib/amq/protocol/client.rb', line 773 def initialize(reply_code, reply_text, class_id, method_id) @reply_code = reply_code @reply_text = reply_text @class_id = class_id @method_id = method_id end |
Instance Attribute Details
#class_id ⇒ Object (readonly)
Returns the value of attribute class_id.
772 773 774 |
# File 'lib/amq/protocol/client.rb', line 772 def class_id @class_id end |
#method_id ⇒ Object (readonly)
Returns the value of attribute method_id.
772 773 774 |
# File 'lib/amq/protocol/client.rb', line 772 def method_id @method_id end |
#reply_code ⇒ Object (readonly)
Returns the value of attribute reply_code.
772 773 774 |
# File 'lib/amq/protocol/client.rb', line 772 def reply_code @reply_code end |
#reply_text ⇒ Object (readonly)
Returns the value of attribute reply_text.
772 773 774 |
# File 'lib/amq/protocol/client.rb', line 772 def reply_text @reply_text end |
Class Method Details
.decode(data) ⇒ Object
757 758 759 760 761 762 763 764 765 766 767 768 769 770 |
# File 'lib/amq/protocol/client.rb', line 757 def self.decode(data) offset = 0 reply_code = data[offset, 2].unpack(PACK_UINT16).first offset += 2 length = data[offset, 1].unpack(PACK_CHAR).first offset += 1 reply_text = data[offset, length] offset += length class_id = data[offset, 2].unpack(PACK_UINT16).first offset += 2 method_id = data[offset, 2].unpack(PACK_UINT16).first offset += 2 self.new(reply_code, reply_text, class_id, method_id) end |
.encode(channel, reply_code, reply_text, class_id, method_id) ⇒ Object
- u’reply_code = nil’, u’reply_text = EMPTY_STRING’, u’class_id = nil’, u’method_id = nil’
786 787 788 789 790 791 792 793 794 795 |
# File 'lib/amq/protocol/client.rb', line 786 def self.encode(channel, reply_code, reply_text, class_id, method_id) buffer = '' buffer << @packed_indexes buffer << [reply_code].pack(PACK_UINT16) buffer << reply_text.to_s.bytesize.chr buffer << reply_text.to_s buffer << [class_id].pack(PACK_UINT16) buffer << [method_id].pack(PACK_UINT16) MethodFrame.new(buffer, channel) end |
.has_content? ⇒ Boolean
780 781 782 |
# File 'lib/amq/protocol/client.rb', line 780 def self.has_content? false end |