logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Object::Pluggable::Constants - Importable constants for Object::Pluggable

Description

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

Exports

"PLUGIN_EAT_NONE"
       Value: 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_CLIENT"
       Value: 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_PLUGIN"
       Value: 3

       This means the event will not be processed by remaining plugins, it will go straight to interested
       sessions.

   "PLUGIN_EAT_ALL"
       Value: 4

       This means the event will be completely discarded, no plugin or session will see it.

Maintainer

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

Name

       Object::Pluggable::Constants - Importable constants for Object::Pluggable

See Also

       Object::Pluggable

perl v5.32.0                                       2021-01-04                  Object::Pluggable::Constants(3pm)

Synopsis

        use Object::Pluggable::Constants qw(:ALL);

See Also