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.
443 444 445 |
# File 'lib/mqtt/sn/packet.rb', line 443 def id @id end |
Instance Method Details
#encode_body ⇒ Object
449 450 451 452 453 |
# File 'lib/mqtt/sn/packet.rb', line 449 def encode_body raise 'id must be an Integer' unless id.is_a?(Integer) [id].pack('n') end |
#parse_body(buffer) ⇒ Object
455 456 457 |
# File 'lib/mqtt/sn/packet.rb', line 455 def parse_body(buffer) self.id, _ignore = buffer.unpack('n') end |