| POE-Component-Client-NNTP documentation | Contained in the POE-Component-Client-NNTP distribution. |
POE::Component::Client::NNTP::Constants - importable constants for POE::Component::Client::NNTP plugins.
version 2.20
use POE::Component::Client::NNTP::Constants qw(:ALL);
POE::Component::Client::NNTP::Constants defines a number of constants that are required by the plugin system.
NNTP_EAT_NONEValue: 1
NNTP_EAT_CLIENTValue: 2
NNTP_EAT_PLUGINValue: 3
NNTP_EAT_ALLValue: 4
Chris Williams <chris@bingosnet.co.uk>
This software is copyright (c) 2010 by Chris Williams and Dennis Taylor.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| POE-Component-Client-NNTP documentation | Contained in the POE-Component-Client-NNTP distribution. |
package POE::Component::Client::NNTP::Constants; BEGIN { $POE::Component::Client::NNTP::Constants::VERSION = '2.20'; } # ABSTRACT: importable constants for POE::Component::Client::NNTP plugins. use strict; use warnings; require Exporter; our @ISA = qw( Exporter ); our %EXPORT_TAGS = ( 'ALL' => [ qw( NNTP_EAT_NONE NNTP_EAT_CLIENT NNTP_EAT_PLUGIN NNTP_EAT_ALL ) ] ); Exporter::export_ok_tags( 'ALL' ); # Our constants sub NNTP_EAT_NONE () { 1 } sub NNTP_EAT_CLIENT () { 2 } sub NNTP_EAT_PLUGIN () { 3 } sub NNTP_EAT_ALL () { 4 } 1; __END__