MQTT.pod 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. use strict;
  2. use warnings;
  3. package Net::MQTT;
  4. $Net::MQTT::VERSION = '1.142010';
  5. # ABSTRACT: Perl modules for MQTT Protocol (http://mqtt.org/)
  6. 1;
  7. __END__
  8. =pod
  9. =encoding UTF-8
  10. =head1 NAME
  11. Net::MQTT - Perl modules for MQTT Protocol (http://mqtt.org/)
  12. =head1 VERSION
  13. version 1.142010
  14. =head1 SYNOPSIS
  15. # net-mqtt-sub /topic
  16. # net-mqtt-pub /topic message
  17. # net-mqtt-trace mqtt.tcp
  18. =head1 DESCRIPTION
  19. Low level API for the MQTT protocol described at L<http://mqtt.org>.
  20. B<IMPORTANT:> This is an early release and the API is still subject to
  21. change.
  22. =head1 DISCLAIMER
  23. This is B<not> official IBM code. I work for IBM but I'm writing this
  24. in my spare time (with permission) for fun.
  25. =head1 SEE ALSO
  26. net-mqtt-sub(1), net-mqtt-pub(1), net-mqtt-trace(1), Net::MQTT::Message(3)
  27. =head1 AUTHOR
  28. Mark Hindess <soft-cpan@temporalanomaly.com>
  29. =head1 COPYRIGHT AND LICENSE
  30. This software is copyright (c) 2014 by Mark Hindess.
  31. This is free software; you can redistribute it and/or modify it under
  32. the same terms as the Perl 5 programming language system itself.
  33. =cut