Class: MQTT::SN::Packet::Publish
Constant Summary collapse
- DEFAULTS =
{ id: 0x00, duplicate: false, qos: 0, retain: false, topic_id_type: :normal }.freeze
Constants inherited from Packet
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#id ⇒ Object
Returns the value of attribute id.
-
#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
#data ⇒ Object
Returns the value of attribute data.
389 390 391 |
# File 'lib/mqtt/sn/packet.rb', line 389 def data @data end |
#id ⇒ Object
Returns the value of attribute id.
388 389 390 |
# File 'lib/mqtt/sn/packet.rb', line 388 def id @id end |
#topic_id ⇒ Object
Returns the value of attribute topic_id.
387 388 389 |
# File 'lib/mqtt/sn/packet.rb', line 387 def topic_id @topic_id end |
Instance Method Details
#encode_body ⇒ Object
399 400 401 402 403 |
# File 'lib/mqtt/sn/packet.rb', line 399 def encode_body raise "id must be an Integer" unless id.is_a?(Integer) [encode_flags, encode_topic_id, id, data].pack("Cnna*") end |
#parse_body(buffer) ⇒ Object
405 406 407 408 409 |
# File 'lib/mqtt/sn/packet.rb', line 405 def parse_body(buffer) flags, topic_id, self.id, self.data = buffer.unpack("Cnna*") parse_flags(flags) parse_topic_id(topic_id) end |