Mojo-Run
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
lib/Mojo/Run.pm view on Meta::CPAN
sub singleton {
return $_obj if defined $_obj;
return $_obj = __PACKAGE__->_constructor;
}
sub _constructor {
my $proto = shift;
my $class = ref($proto) || $proto;
my $self = $class->SUPER::new;
bless $self => $class;
# install SIGCHLD handler
$SIG{'CHLD'} = sub { _sig_chld($self, @_) };
return $self;
}
sub log_level {
my ($self, $level) = @_;
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.927 second using v1.00-cache-2.02-grep-82fe00e-cpan-a086c87fca4 )