NAME
Argon::Manager - Entry-point Argon service providing intelligent task routing
VERSION
version 0.18
SYNOPSIS
use Argon::Manager;
use AnyEvent;
my $cv = AnyEvent->condvar;
my $mgr = Argon::Manager->new(
host => 'localhost',
port => 8000,
keyfile => 'path/to/secret',
);
$cv->recv;
DESCRIPTION
The entry point service with which workers are registered, to which clients connect, and which provides task queueing services for the system.
For most use cases, this class need not be access directly; instead, "ar-manager" in bin provides a command-line interface to control the manager process.
PUBLIC INTERFACE
Most relevant attributes and methods are documented in Argon::Server.
AUTHOR
Jeff Ober <sysread@fastmail.fm>
COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by Jeff Ober.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.