File: | lib/Net/MQTT/Message/PingResp.pm |
Coverage: | 100.0% |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | 3 3 3 | 6946 21 247 | use strict; | ||||
2 | 3 3 3 | 39 15 470 | use warnings; | ||||
3 | package Net::MQTT::Message::PingResp; | ||||||
4 | |||||||
5 | # ABSTRACT: Perl module to represent an MQTT PingResp message | ||||||
6 | |||||||
7 - 17 | =head1 SYNOPSIS # instantiated by Net::MQTT::Message =head1 DESCRIPTION This module encapsulates a single MQTT Ping Response message. It is a specific subclass used by L<Net::MQTT::Message> and should not need to be instantiated directly. =cut | ||||||
18 | |||||||
19 | 3 3 3 | 40 15 551 | use base 'Net::MQTT::Message'; | ||||
20 | |||||||
21 | sub message_type { | ||||||
22 | 11 | 286 | 13 | ||||
23 | } | ||||||
24 | |||||||
25 | 1; |