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

Log::Dispatch::Configurator - Abstract Configurator class

Author

       Tatsuhiko Miyagawa <miyagawa@bulknews.net>

       This library is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself.

Description

       Log::Dispatch::Configurator is an abstract class of config parser. If you make new configurator
       implementation, you should inherit from this class.

       See "PLUGGABLE CONFIGURATOR" in Log::Dispatch::Config for details.

Name

       Log::Dispatch::Configurator - Abstract Configurator class

See Also

       Log::Dispatch::Config

perl v5.34.0                                       2022-06-15                   Log::Dispatch::Configurator(3pm)

Synopsis

         package Log::Dispatch::Configurator::Foo;
         use base qw(Log::Dispatch::Configurator);

         # should implement
         sub get_attrs_global { }
         sub get_attrs        { }

         # optional
         sub reload       { }
         sub needs_reload { }

See Also