Class: MQTT::SN::Packet::Pubrel
- Inherits:
-
MQTT::SN::Packet
- Object
- MQTT::SN::Packet
- MQTT::SN::Packet::Pubrel
- Defined in:
- lib/mqtt/sn/packet.rb
Constant Summary collapse
- DEFAULTS =
{ :id => 0x00 }
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
Attributes inherited from MQTT::SN::Packet
#clean_session, #duplicate, #qos, #request_will, #retain, #topic_id_type
Instance Method Summary collapse
Methods inherited from MQTT::SN::Packet
#initialize, parse, #to_s, #type_id, #update_attributes
Constructor Details
This class inherits a constructor from MQTT::SN::Packet
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
479 480 481 |
# File 'lib/mqtt/sn/packet.rb', line 479 def id @id end |
Instance Method Details
#encode_body ⇒ Object
485 486 487 488 489 |
# File 'lib/mqtt/sn/packet.rb', line 485 def encode_body raise 'id must be an Integer' unless id.is_a?(Integer) [id].pack('n') end |
#parse_body(buffer) ⇒ Object
491 492 493 |
# File 'lib/mqtt/sn/packet.rb', line 491 def parse_body(buffer) self.id, _ignore = buffer.unpack('n') end |