Class: MQTT::Packet::Pingreq
- Inherits:
-
MQTT::Packet
- Object
- MQTT::Packet
- MQTT::Packet::Pingreq
- Defined in:
- lib/mqtt/packet.rb
Overview
Class representing an MQTT Ping Request 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 = {}) ⇒ Pingreq
constructor
Create a new Ping Request 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, read_byte, #to_s, #type_id, #type_name, #update_attributes, #validate_flags
Constructor Details
#initialize(args = {}) ⇒ Pingreq
Create a new Ping Request packet
971 972 973 |
# File 'lib/mqtt/packet.rb', line 971 def initialize(args = {}) super(args) end |
Instance Method Details
#parse_body(buffer) ⇒ Object
Check the body
976 977 978 979 980 981 |
# File 'lib/mqtt/packet.rb', line 976 def parse_body(buffer) super(buffer) return if buffer.empty? raise ProtocolException, 'Extra bytes at end of Ping Request packet' end |