The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

PJob -- Poe/Perl Job Server and Client

VERSION

This document describes version 0.37 of PJob

SYNOPSIS

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

DESCRIPTION

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

SEE ALSO

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

AUTHOR

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

COPYRIGHT & LICENSE

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.