Class: MQTT::SN::Packet::Pubrec

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

Constant Summary collapse

DEFAULTS =
{
  id: 0x00
}.freeze

Constants inherited from Packet

Packet::ATTR_DEFAULTS

Instance Attribute Summary collapse

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

#idObject

Returns the value of attribute id.



455
456
457
# File 'lib/mqtt/sn/packet.rb', line 455

def id
  @id
end

Instance Method Details

#encode_bodyObject



461
462
463
464
465
# File 'lib/mqtt/sn/packet.rb', line 461

def encode_body
  raise "id must be an Integer" unless id.is_a?(Integer)

  [id].pack("n")
end

#parse_body(buffer) ⇒ Object



467
468
469
# File 'lib/mqtt/sn/packet.rb', line 467

def parse_body(buffer)
  self.id, _ignore = buffer.unpack("n")
end