| MasonX-Resolver-Multiplex documentation | view source | Contained in the MasonX-Resolver-Multiplex distribution. |
MasonX::Resolver::Multiplex - multiplex several Resolver objects
Version 0.001
use MasonX::Resolver::Multiplex;
my $resolver = MasonX::Resolver::Multiplex->new(
resolvers => [
My::Custom::Resolver->new,
HTML::Mason::Resolver::File->new,
],
);
my $interp = HTML::Mason::Interp->new(
resolver => $resolver,
# ... other options
)
Use this Resolver subclass when you want to combine the behavior of other Resolver subclasses, such as in the SYNOPSIS.
This class delegates methods to its contained resolvers. Each method is
called on each resolver in order; the first to return a true value 'wins'.
Delegated methods:
HTML::Mason HTML::Mason::Resolver
Hans Dieter Pearcey, <hdp at pobox.com>
Please report any bugs or feature requests to bug-masonx-resolver-multiplex at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MasonX-Resolver-Multiplex. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc MasonX::Resolver::Multiplex
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=MasonX-Resolver-Multiplex
Copyright 2008 Hans Dieter Pearcey.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| MasonX-Resolver-Multiplex documentation | view source | Contained in the MasonX-Resolver-Multiplex distribution. |