Class: MQTT::SN::Packet::Pubcomp
- Inherits:
-
MQTT::SN::Packet
- Object
- MQTT::SN::Packet
- MQTT::SN::Packet::Pubcomp
- 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
462 463 464 |
# File 'lib/mqtt/sn/packet.rb', line 462 def id @id end |
Instance Method Details
#encode_body ⇒ Object
468 469 470 471 472 473 474 |
# File 'lib/mqtt/sn/packet.rb', line 468 def encode_body unless id.is_a?(Integer) raise "id must be an Integer" end [id].pack('n') end |
#parse_body(buffer) ⇒ Object
476 477 478 |
# File 'lib/mqtt/sn/packet.rb', line 476 def parse_body(buffer) self.id, _ignore = buffer.unpack('n') end |