Class: MQTT::SN::Packet::Suback
Constant Summary collapse
- DEFAULTS =
{ qos: 0, id: 0x00, topic_id: 0x00, topic_id_type: :normal }.freeze
Constants inherited from Packet
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#return_code ⇒ Object
Returns the value of attribute return_code.
-
#topic_id ⇒ Object
Returns the value of attribute topic_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.
514 515 516 |
# File 'lib/mqtt/sn/packet.rb', line 514 def id @id end |
#return_code ⇒ Object
Returns the value of attribute return_code.
516 517 518 |
# File 'lib/mqtt/sn/packet.rb', line 516 def return_code @return_code end |
#topic_id ⇒ Object
Returns the value of attribute topic_id.
515 516 517 |
# File 'lib/mqtt/sn/packet.rb', line 515 def topic_id @topic_id end |
Instance Method Details
#encode_body ⇒ Object
525 526 527 528 529 |
# File 'lib/mqtt/sn/packet.rb', line 525 def encode_body raise "id must be an Integer" unless id.is_a?(Integer) [encode_flags, encode_topic_id, id, return_code].pack("CnnC") end |
#parse_body(buffer) ⇒ Object
531 532 533 534 535 |
# File 'lib/mqtt/sn/packet.rb', line 531 def parse_body(buffer) flags, topic_id, self.id, self.return_code = buffer.unpack("CnnC") parse_flags(flags) parse_topic_id(topic_id) end |