
POE::Component::Pluggable::Constants - importable constants for POE::Component::Pluggable

use POE::Component::Pluggable::Constants qw(:ALL);

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

PLUGIN_EAT_NONEValue: 1
This means the event will continue to be processed by remaining plugins and finally, sent to interested sessions that registered for it.
PLUGIN_EAT_CLIENTValue: 2
This means the event will continue to be processed by remaining plugins but it will not be sent to any sessions that registered for it.
PLUGIN_EAT_PLUGINValue: 3
This means the event will not be processed by remaining plugins, it will go straight to interested sessions.
PLUGIN_EAT_ALLValue: 4
This means the event will be completely discarded, no plugin or session will see it.

Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
