GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Jonk::Worker(3) User Contributed Perl Documentation Jonk::Worker(3)

Jonk::Worker - get a job data class.

    use DBI; 
    use Jonk::Worker;
    
    my $dbh = DBI->connect(...);
    my $jonk = Jonk::Worker->new($dbh, {functions => ['MyWorker']});
    my $job = $jonk->dequeue;
    print $job->{func}; # MyWorker
    print $job->{arg};  # arg

Creates a new Jonk object, and returns the object.

$options is an optional settings.

  • $dbh

    $dbh is database handle.

  • $options->{functions}

    Key word of job which this Jonk instance looks for.

  • $options->{table_name}

    specific job table name.

    Default job table name is `job`.

  • $options->{job_find_size}

    specific lookup job record size.

    Default 50.

dequeue a job from a database.

returns job hashref data.

Please do deserialize if it is necessary.

$job_id (optional)

lookup specific $job_id's job.

get most recent error infomation.

  my $job = $jonk->dequeue;
  if ($jonk->errstr) {
      die $jonk->errstr;
  }
2010-11-26 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.