Class: MQTT::Packet::Pingresp
- Inherits:
-
MQTT::Packet
- Object
- MQTT::Packet
- MQTT::Packet::Pingresp
- Defined in:
- lib/mqtt/packet.rb
Overview
Class representing an MQTT Ping Response packet
Constant Summary
Constants inherited from MQTT::Packet
Instance Attribute Summary
Attributes inherited from MQTT::Packet
#body_length, #flags, #id, #version
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ Pingresp
constructor
Create a new Ping Response packet.
-
#parse_body(buffer) ⇒ Object
Check the body.
Methods inherited from MQTT::Packet
create_from_header, #encode_body, #inspect, #message_id, #message_id=, parse, parse_header, read, #to_s, #type_id, #type_name, #update_attributes, #validate_flags
Constructor Details
#initialize(args = {}) ⇒ Pingresp
Create a new Ping Response packet
1037 1038 1039 |
# File 'lib/mqtt/packet.rb', line 1037 def initialize(args={}) super(args) end |
Instance Method Details
#parse_body(buffer) ⇒ Object
Check the body
1042 1043 1044 1045 1046 1047 |
# File 'lib/mqtt/packet.rb', line 1042 def parse_body(buffer) super(buffer) unless buffer.empty? raise ProtocolException.new("Extra bytes at end of Ping Response packet") end end |