Connector
view release on metacpan or search on metacpan
lib/Connector/Tee.pm view on Meta::CPAN
1;
__END__
=head1 Name
Connector::Tee
=head1 Description
This connector can be used to search for a value over multiple branches
in a way that is transparent to the caller.
=head1 Configurarion Example
class: Connector::Tee
accept: "\\A[a-zA-Z]+\\z"
branches:
- static
- conn1
- conn2
lib/Connector/Wrapper.pm view on Meta::CPAN
# Connector::Wrapper
#
# Wrapper class to filter access to a connector by a prefix
#
# Written by Oliver Welter for the OpenXPKI project 2012
#
# TODO: To make this really transparent it need to be inherited
# from Connector and implement the prefix stuff
package Connector::Wrapper;
use strict;
use warnings;
use English;
use Moose;
use Data::Dumper;
( run in 0.418 second using v1.01-cache-2.11-cpan-0a6323c29d9 )