POEx::WorkerPool::Worker - A generic worker class for WorkerPool


POEx-WorkerPool documentation Contained in the POEx-WorkerPool distribution.

Index


Code Index:

NAME

Top

POEx::WorkerPool::Worker - A generic worker class for WorkerPool

VERSION

Top

version 1.102740

DESCRIPTION

Top

This is only a shell of a class. For details on available methodsand attributes please see POEx::WorkerPool::Role::WorkerPool::Worker

AUTHOR

Top

Nicholas R. Perez <nperez@cpan.org>

COPYRIGHT AND LICENSE

Top


POEx-WorkerPool documentation Contained in the POEx-WorkerPool distribution.

package POEx::WorkerPool::Worker;
BEGIN {
  $POEx::WorkerPool::Worker::VERSION = '1.102740';
}

#ABSTRACT: A generic worker class for WorkerPool

use MooseX::Declare;

class POEx::WorkerPool::Worker {
    with 'MooseX::CompileTime::Traits';
    with 'POEx::WorkerPool::Role::WorkerPool::Worker';
}

1;



__END__