POEx::WorkerPool::Error::NoAvailableWorkers - An error class indicating that no workers are available


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

Index


Code Index:

NAME

Top

POEx::WorkerPool::Error::NoAvailableWorkers - An error class indicating that no workers are available

VERSION

Top

version 1.102740

DESCRIPTION

Top

This exception class is thrown when attempting to enqueue a job but there are no workers available (either all are active, or have full job queues)

AUTHOR

Top

Nicholas R. Perez <nperez@cpan.org>

COPYRIGHT AND LICENSE

Top


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

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

#ABSTRACT: An error class indicating that no workers are available

use MooseX::Declare;

class POEx::WorkerPool::Error::NoAvailableWorkers extends POEx::WorkerPool::Error {

}

1;



__END__