NAME

Perinci::Access::InProcess::PackagePrefix - Perinci::Access::InProcess with package_prefix

VERSION

version 0.47

SYNOPSIS

use Perinci::Access::InProcess::PackagePrefix;
my $pa = Perinci::Access::InProcess::PackagePrefix->new(
    package_prefix => "MyCompany::MyApp");

# will call MyCompany::MyApp::Foo::func()
$res = $pa->request(call => '/Foo/func');

DESCRIPTION

This subclass adds package_prefix option. This functionality is not rolled into Perinci::Access::InProcess because I do not really want many people to actually use this feature. It's better if actual structures of Perl packages are reflected in API's.

SEE ALSO

Perinci::Access::InProcess

AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Steven Haryanto.

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