The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

SYNOPSIS

my $manager = Archer::Parallel::ForkManager->new;
$manager->run(
    {
        num => 30,
        callback => sub {
            my $elem = shift;
            $self->run_hook('process', {elem => $elem});
        }
    }
);