Class: MQTT::SN::Packet::Subscribe
- Defined in:
- lib/mqtt/sn/packet.rb
Constant Summary collapse
- DEFAULTS =
{ id: 0x00, topic_id_type: :normal }.freeze
Constants inherited from Packet
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#topic_id ⇒ Object
Returns the value of attribute topic_id.
-
#topic_name ⇒ Object
Returns the value of attribute topic_name.
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.
491 492 493 |
# File 'lib/mqtt/sn/packet.rb', line 491 def id @id end |
#topic_id ⇒ Object
Returns the value of attribute topic_id.
492 493 494 |
# File 'lib/mqtt/sn/packet.rb', line 492 def topic_id @topic_id end |
#topic_name ⇒ Object
Returns the value of attribute topic_name.
493 494 495 |
# File 'lib/mqtt/sn/packet.rb', line 493 def topic_name @topic_name end |
Instance Method Details
#encode_body ⇒ Object
500 501 502 503 504 |
# File 'lib/mqtt/sn/packet.rb', line 500 def encode_body raise "id must be an Integer" unless id.is_a?(Integer) [encode_flags, id, encode_topic].pack("Cna*") end |
#parse_body(buffer) ⇒ Object
506 507 508 509 510 |
# File 'lib/mqtt/sn/packet.rb', line 506 def parse_body(buffer) flags, self.id, topic = buffer.unpack("Cna*") parse_flags(flags) parse_topic(topic) end |