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

Path::Dispatcher::Rule::Dispatch - redispatch

Attributes

dispatcher
       A Path::Dispatcher object. Its matches will be returned by matching this rule.

Author

       Shawn M Moore, "<sartak at bestpractical.com>"

Description

       Rules of this class use another dispatcher to match the path.

Name

       Path::Dispatcher::Rule::Dispatch - redispatch

Support

       Bugs may be submitted through the RT bug tracker <https://rt.cpan.org/Public/Dist/Display.html?Name=Path-
       Dispatcher> (or bug-Path-Dispatcher@rt.cpan.org <mailto:bug-Path-Dispatcher@rt.cpan.org>).

Synopsis

           my $dispatcher = Path::Dispatcher->new(
               rules => [
                   Path::Dispatcher::Rule::Tokens->new(
                       tokens => [ 'help' ],
                       block  => sub { show_help },
                   ),
                   Path::Dispatcher::Rule::Tokens->new(
                       tokens => [ 'quit' ],
                       block  => sub { exit },
                   ),
               ],
           );

           my $rule = Path::Dispatcher::Rule::Dispatch->new(
               dispatcher => $dispatcher,
           );

           $rule->run("help");

Version

       version 1.08

See Also