
PJob -- Poe/Perl Job Server and Client

This document describes version 0.41 of PJob

$ps = PJob::Server->new(jobs => {ls => 'ls /home', ps => 'ps -aux'})
->run();
$pc = PJob::Client->new(server =>'localhost:10086')->run();

PJob::Server is a module built on Any::Moose, POE::Wheel::Run and POE::Component::Server::TCP, it provide you a simple way to setup your own job server.
PJob::Server support some features like allowed_hosts, job_dispatch, max_connections, See PJob::Server for more details.
PJob::Client is a simple client module for PJob::Server

PJob::Server, PJob::Client, POE, Any::Moose

woosley.xu<woosley.xu@gmail.com>

This software is copyright (c) 2009 by woosley.xu.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.