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

Inherits:
Packet
  • Object
show all
Defined in:
lib/mqtt/sn/packet.rb

Constant Summary

Constants inherited from Packet

Packet::ATTR_DEFAULTS

Instance Attribute Summary collapse

Attributes inherited from Packet

#body_length, #flags, #id, #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

#dataObject

Returns the value of attribute data.



328
329
330
# File 'lib/mqtt/sn/packet.rb', line 328

def data
  @data
end

Instance Method Details

#encode_bodyObject



330
331
332
# File 'lib/mqtt/sn/packet.rb', line 330

def encode_body
  data
end

#parse_body(buffer) ⇒ Object



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

def parse_body(buffer)
  self.data = buffer
end