Cantella-Worker-Role-Beanstalk

 view release on metacpan or  search on metacpan

lib/Cantella/Worker/Role/Beanstalk.pm  view on Meta::CPAN

__END__;

=head1 NAME

Cantella::Worker::Role::Beanstalk - Fetch Cantella::Worker jobs from beanstalkd

=head1 SYNOPSIS

    package TestWorkerPool;

    use Try::Tiny;
    use Moose;
    with(
      'Cantella::Worker::Role::Worker',
      'Cantella::Worker::Role::Beanstalk'
    );

    sub work {
      my ($self, $job) = @_;
      my @args = $job->args;
      try {



( run in 0.224 second using v1.01-cache-2.11-cpan-05444aca049 )