File Coverage

File:lib/Net/MQTT/Message/PingReq.pm
Coverage:100.0%

linestmtbrancondsubpodtimecode
1
3
3
3
3278
18
232
use strict;
2
3
3
3
38
12
383
use warnings;
3package Net::MQTT::Message::PingReq;
4
5# ABSTRACT: Perl module to represent an MQTT PingReq message
6
7 - 17
=head1 SYNOPSIS

  # instantiated by Net::MQTT::Message

=head1 DESCRIPTION

This module encapsulates a single MQTT Ping Request 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
35
14
694
use base 'Net::MQTT::Message';
20
21sub message_type {
22
11
298
  12
23}
24
251;