Class: MQTT::SN::Packet::Unsuback
- Inherits:
-
MQTT::SN::Packet
- Object
- MQTT::SN::Packet
- MQTT::SN::Packet::Unsuback
- 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.
599 600 601 |
# File 'lib/mqtt/sn/packet.rb', line 599 def id @id end |
Instance Method Details
#encode_body ⇒ Object
605 606 607 608 609 610 611 |
# File 'lib/mqtt/sn/packet.rb', line 605 def encode_body unless id.is_a?(Integer) raise "id must be an Integer" end [id].pack('n') end |
#parse_body(buffer) ⇒ Object
613 614 615 |
# File 'lib/mqtt/sn/packet.rb', line 613 def parse_body(buffer) self.id = buffer.unpack('n').first end |