Munin::Master::ProcessManager
Manager for parallel execution of Workers.
- Provided by: munin-doc (Version: 2.0.25-2ubuntu0.16.04.4)
- Source: munin
- Report a bug
Manager for parallel execution of Workers.
use Munin::Master::ProcessManager;
my $pm = Munin::Master::ProcessManager->new(sub {
my ($res) = @_;
# Do something with $res ...
});
$pm->add_workers(...);
$pm->start_work();
FIX