AnyEvent-Net-Curl-Queued
view release on metacpan or search on metacpan
eg/Gauge/YADA.pm view on Meta::CPAN
package Gauge::YADA;
use strict;
use utf8;
use warnings qw(all);
use Any::Moose;
with qw(Gauge::Role);
use YADA;
sub run {
my ($self) = @_;
YADA->new(
common_opts => { useragent => qq(YADA/$YADA::VERSION) },
max => $self->parallel,
)->append($self->queue => sub {})->wait;
return;
}
1;
( run in 0.898 second using v1.01-cache-2.11-cpan-8f98c5d2c55 )