|
NAMEJonk::Cookbook::DequeueSpecificJob - dequeue specific job.USAGE#! perl use strict; use warnings; use DBI; use Jonk::Client; use Jonk::Worker; my $dbh = DBI->connect('dbi:mysql:test','user','pass'); my $client = Jonk::Client->new($dbh); my $job_id = $client->enqueue('worker_key','job_data_here'); my $worker = Jonk::Worker->new($dbh => {functions => [qw/worker_key/]}); my $job = $worker->dequeue($job_id);
Visit the GSP FreeBSD Man Page Interface. |