Async-ResourcePool
view release on metacpan or search on metacpan
{
"abstract" : "Resource pooling for asynchronous programs.",
"author" : [
"unknown"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.4, CPAN::Meta::Converter version 2.112150",
"license" : [
"unknown"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
---
abstract: 'Resource pooling for asynchronous programs.'
author:
- unknown
build_requires:
Test::More: 0
common::sense: 0
configure_requires:
Module::Build: 0.4
dynamic_config: 1
generated_by: 'Module::Build version 0.4, CPAN::Meta::Converter version 2.112150'
license: unknown
lib/Async/ResourcePool.pm view on Meta::CPAN
package Async::ResourcePool v0.1.3;
=head1 NAME
Async::ResourcePool - Resource pooling for asynchronous programs.
=head1 DESCRIPTION
This module implements the simple functionality of creating a source pool for
event-based/asynchronous programs. It provides consumers with the ability to
have some code execute whenever a resource happens to be ready. Further, it
allows resources to be categorized (by label) and limited as such.
=cut
use strict;
use warnings FATAL => "all";
use Carp qw( croak );
=head1 CONSTRUCTOR
( run in 0.411 second using v1.01-cache-2.11-cpan-0d8aa00de5b )