Class: MQTT::SN::Packet::Regack
- Inherits:
-
MQTT::SN::Packet
- Object
- MQTT::SN::Packet
- MQTT::SN::Packet::Regack
- Defined in:
- lib/mqtt/sn/packet.rb
Constant Summary collapse
- DEFAULTS =
{ :id => 0x00, :topic_id => 0x00, :topic_id_type => :normal }
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 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.
378 379 380 |
# File 'lib/mqtt/sn/packet.rb', line 378 def id @id end |
#return_code ⇒ Object
Returns the value of attribute return_code.
380 381 382 |
# File 'lib/mqtt/sn/packet.rb', line 380 def return_code @return_code end |
#topic_id ⇒ Object
Returns the value of attribute topic_id.
379 380 381 |
# File 'lib/mqtt/sn/packet.rb', line 379 def topic_id @topic_id end |
Instance Method Details
#encode_body ⇒ Object
388 389 390 391 392 393 394 395 396 397 398 |
# File 'lib/mqtt/sn/packet.rb', line 388 def encode_body unless id.is_a?(Integer) raise "id must be an Integer" end unless topic_id.is_a?(Integer) raise "topic_id must be an Integer" end [topic_id, id, return_code].pack('nnC') end |
#parse_body(buffer) ⇒ Object
400 401 402 |
# File 'lib/mqtt/sn/packet.rb', line 400 def parse_body(buffer) self.topic_id, self.id, self.return_code = buffer.unpack('nnC') end |