use strict; use warnings; package Net::MQTT::Message::Disconnect; $Net::MQTT::Message::Disconnect::VERSION = '1.142010'; # ABSTRACT: Perl module to represent an MQTT Disconnect message use base 'Net::MQTT::Message'; sub message_type { 14 } 1; __END__ =pod =encoding UTF-8 =head1 NAME Net::MQTT::Message::Disconnect - Perl module to represent an MQTT Disconnect message =head1 VERSION version 1.142010 =head1 SYNOPSIS # instantiated by Net::MQTT::Message =head1 DESCRIPTION This module encapsulates a single MQTT Disconnection Notification message. It is a specific subclass used by L and should not need to be instantiated directly. =head1 AUTHOR Mark Hindess =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2014 by Mark Hindess. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut