POE::Component::Client::NNTP::Constants - importable constants for POE::Component::Client::NNTP plugins.


POE-Component-Client-NNTP documentation Contained in the POE-Component-Client-NNTP distribution.

Index


Code Index:

NAME

Top

POE::Component::Client::NNTP::Constants - importable constants for POE::Component::Client::NNTP plugins.

VERSION

Top

version 2.20

SYNOPSIS

Top

  use POE::Component::Client::NNTP::Constants qw(:ALL);

DESCRIPTION

Top

POE::Component::Client::NNTP::Constants defines a number of constants that are required by the plugin system.

EXPORTS

Top

NNTP_EAT_NONE

Value: 1

NNTP_EAT_CLIENT

Value: 2

NNTP_EAT_PLUGIN

Value: 3

NNTP_EAT_ALL

Value: 4

SEE ALSO

Top

POE::Component::Client::NNTP

POE::Component::Pluggable

AUTHOR

Top

Chris Williams <chris@bingosnet.co.uk>

COPYRIGHT AND LICENSE

Top


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__