The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Job::Machine::Client

VERSION

version 0.18

SYNOPSIS

  my $client = Job::Machine::Client->new(dbh => $dbh, queue => 'job.task');
  my $id = $client->send({foo => 'bar'});

NAME

Job::Machine::Client - Class for Job Clients

METHODS

send

 Send a message to the configured queue

  Parameters
  data - data to pass to the worker process
  queue - optional queue name. Not needed if already set in new

 Returns the message id.

check

 Check for reply. 
 
 Parameter: The message id.

 Will listen for any answers from the worker(s) and return true if there is one.

uncheck

 Stop check for reply. 
 
 Parameter: The message id.

 Will stop listening for any answers.

receive

 Receive the reply.

 Parameter: The message id.

 Will get the latest reply to a message or null if no reply.

SEE ALSO

Job::Machine::Base.

AUTHOR

Kaare Rasmussen <kaare@cpan.org>.

COPYRIGHT

Copyright (C) 2009-2010, Kaare Rasmussen

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.

AUTHOR

Kaare Rasmussen <kaare at cpan dot net>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Kaare Rasmussen.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.