Class: EventMachine::MQTTSN::Packet::Suback

Inherits:
EventMachine::MQTTSN::Packet show all
Defined in:
lib/em/mqtt-sn/packet.rb

Constant Summary collapse

DEFAULTS =
{
  :qos => 0,
  :id => 0x00,
  :topic_id_type => :normal
}

Instance Attribute Summary collapse

Attributes inherited from EventMachine::MQTTSN::Packet

#clean_session, #duplicate, #qos, #request_will, #retain, #topic_id_type

Instance Method Summary collapse

Methods inherited from EventMachine::MQTTSN::Packet

#initialize, parse, #to_s, #type_id, #update_attributes

Constructor Details

This class inherits a constructor from EventMachine::MQTTSN::Packet

Instance Attribute Details

#idObject

Returns the value of attribute id.



281
282
283
# File 'lib/em/mqtt-sn/packet.rb', line 281

def id
  @id
end

#return_codeObject

Returns the value of attribute return_code.



283
284
285
# File 'lib/em/mqtt-sn/packet.rb', line 283

def return_code
  @return_code
end

#topic_idObject

Returns the value of attribute topic_id.



282
283
284
# File 'lib/em/mqtt-sn/packet.rb', line 282

def topic_id
  @topic_id
end

Instance Method Details

#encode_bodyObject



291
292
293
# File 'lib/em/mqtt-sn/packet.rb', line 291

def encode_body
  [encode_flags, encode_topic_id, id, return_code].pack('CnnC')
end

#parse_body(buffer) ⇒ Object



295
296
297
298
299
# File 'lib/em/mqtt-sn/packet.rb', line 295

def parse_body(buffer)
  flags, topic_id, self.id, self.return_code = buffer.unpack('CnnC')
  parse_flags(flags)
  parse_topic_id(topic_id)
end