Class: PahoMqtt::Packet::Pubcomp

Inherits:
PahoMqtt::Packet show all
Defined in:
lib/paho.mqtt/packet_manager.rb

Overview

Class representing an MQTT Publish Complete packet

Constant Summary

Constants inherited from PahoMqtt::Packet

ATTR_DEFAULTS

Instance Attribute Summary

Attributes inherited from PahoMqtt::Packet

#body_length, #flags, #id, #version

Instance Method Summary collapse

Methods inherited from PahoMqtt::Packet

create_from_header, #initialize, parse, parse_header, read, #to_s, #type_id, #type_name, #update_attributes, #validate_flags

Constructor Details

This class inherits a constructor from PahoMqtt::Packet

Instance Method Details

#encode_bodyObject

Get serialisation of packet’s body



727
728
729
# File 'lib/paho.mqtt/packet_manager.rb', line 727

def encode_body
  encode_short(@id)
end

#inspectObject

Returns a human readable string, summarising the properties of the packet



741
742
743
# File 'lib/paho.mqtt/packet_manager.rb', line 741

def inspect
  "\#<#{self.class}: 0x%2.2X>" % id
end

#parse_body(buffer) ⇒ Object

Parse the body (variable header and payload) of a packet



732
733
734
735
736
737
738
# File 'lib/paho.mqtt/packet_manager.rb', line 732

def parse_body(buffer)
  super(buffer)
  @id = shift_short(buffer)
  unless buffer.empty?
    raise "Extra bytes at end of Publish Complete packet"
  end
end