Class: MQTT::SN::Packet::Willmsg

Inherits:
MQTT::SN::Packet show all
Defined in:
lib/mqtt/sn/packet.rb

Constant Summary

Constants inherited from MQTT::SN::Packet

DEFAULTS

Instance Attribute Summary collapse

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

#dataObject

Returns the value of attribute data.



334
335
336
# File 'lib/mqtt/sn/packet.rb', line 334

def data
  @data
end

Instance Method Details

#encode_bodyObject



336
337
338
# File 'lib/mqtt/sn/packet.rb', line 336

def encode_body
  data
end

#parse_body(buffer) ⇒ Object



340
341
342
# File 'lib/mqtt/sn/packet.rb', line 340

def parse_body(buffer)
  self.data = buffer
end