名称
MooX::Failover - 使用故障转移实例化 Moo 类
版本
v0.3.3
概要
# In your class:
package MyClass;
use Moo;
use MooX::Failover;
has 'attr' => ( ... );
# after attributes are defined:
failover_to 'OtherClass';
...
# When using the class
my $obj = MyClass->new( %args );
# If %args contains missing or invalid values or new otherwise
# fails, then $obj will be of type "OtherClass".
安装
请参阅。
所需模块
此发行版需要 Perl v5.10.0。
2021-07-02 15:03:45
19KB
Perl
1