NAME
App::Environ::Que - Perl library to enqueue tasks in Ruby Que
SYNOPSIS
use AE;
use App::Environ;
use App::Environ::Que;
App::Environ->send_event('initialize');
my $que = App::Environ::Que->instance('main');
my $cv = AE::cv;
$que->enqueue(
type => 'sendTelegram',
args => { to => 00000000, text => 'test' },
sub { $cv->send; }
);
$cv->recv;
App::Environ->send_event('finalize:r');
DESCRIPTION
Perl library to enqueue tasks in Ruby Que queuing library for PostgreSQL https://github.com/chanks/que.
This library is based on App::Environ.
Main deal of this library: enqueue tasks in perl code and process them in go code with que-go https://github.com/bgentry/que-go.
AUTHOR
Andrey Kuzmin, <kak-tus@mail.ru>