Class: MQTT::SN::Packet::Pubrel
Constant Summary collapse
- DEFAULTS =
{ id: 0x00 }.freeze
Constants inherited from Packet
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
Attributes inherited from Packet
#body_length, #flags, #version
Instance Method Summary collapse
Methods inherited from Packet
create_from_header, #dup, #initialize, #inspect, #message_id, #message_id=, parse, parse_header, read, read_byte, #to_s, #type_id, #type_name, #update_attributes, #validate_flags
Constructor Details
This class inherits a constructor from MQTT::Packet
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
473 474 475 |
# File 'lib/mqtt/sn/packet.rb', line 473 def id @id end |
Instance Method Details
#encode_body ⇒ Object
479 480 481 482 483 |
# File 'lib/mqtt/sn/packet.rb', line 479 def encode_body raise "id must be an Integer" unless id.is_a?(Integer) [id].pack("n") end |
#parse_body(buffer) ⇒ Object
485 486 487 |
# File 'lib/mqtt/sn/packet.rb', line 485 def parse_body(buffer) self.id, _ignore = buffer.unpack("n") end |