AnyEvent-ProcessPool
view release on metacpan or search on metacpan
{
"abstract" : "Asynchronously runs code concurrently in a pool of perl processes",
"author" : [
"Jeff Ober <sysread@fastmail.fm>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 6.010, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
---
abstract: 'Asynchronously runs code concurrently in a pool of perl processes'
author:
- 'Jeff Ober <sysread@fastmail.fm>'
build_requires:
ExtUtils::MakeMaker: '0'
File::Spec: '0'
Test2::Bundle::Extended: '0'
Test::More: '0'
Test::Pod: '1.41'
configure_requires:
ExtUtils::MakeMaker: '0'
Makefile.PL view on Meta::CPAN
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.010.
use strict;
use warnings;
use 5.010;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "Asynchronously runs code concurrently in a pool of perl processes",
"AUTHOR" => "Jeff Ober <sysread\@fastmail.fm>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "AnyEvent-ProcessPool",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.010",
"NAME" => "AnyEvent::ProcessPool",
"PREREQ_PM" => {
"AnyEvent" => "7.14",
This archive contains the distribution AnyEvent-ProcessPool,
version 0.07:
Asynchronously runs code concurrently in a pool of perl processes
This software is copyright (c) 2017 by Jeff Ober.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
This README file was generated by Dist::Zilla::Plugin::Readme v6.010.
lib/AnyEvent/ProcessPool.pm view on Meta::CPAN
package AnyEvent::ProcessPool;
# ABSTRACT: Asynchronously runs code concurrently in a pool of perl processes
$AnyEvent::ProcessPool::VERSION = '0.07';
use common::sense;
use Carp;
use AnyEvent;
use AnyEvent::ProcessPool::Process;
use AnyEvent::ProcessPool::Task;
use AnyEvent::ProcessPool::Util qw(next_id cpu_count);
sub new {
my ($class, %param) = @_;
lib/AnyEvent/ProcessPool.pm view on Meta::CPAN
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
AnyEvent::ProcessPool - Asynchronously runs code concurrently in a pool of perl processes
=head1 VERSION
version 0.07
=head1 SYNOPSIS
use AnyEvent::ProcessPool;
my $pool = AnyEvent::ProcessPool->new(
( run in 0.312 second using v1.01-cache-2.11-cpan-0d8aa00de5b )