| POEx-WorkerPool documentation | Contained in the POEx-WorkerPool distribution. |
POEx::WorkerPool::Error::NoAvailableWorkers - An error class indicating that no workers are available
version 1.102740
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)
Nicholas R. Perez <nperez@cpan.org>
This software is copyright (c) 2010 by Infinity Interactive.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| 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__