NAME
Gearman::Task - a task in Gearman, from the point of view of a client
SYNOPSIS
my $task = Gearman::Task->new("add", "1+2", {
...
});
$taskset->add_task($task);
$client->do_task($task);
$client->dispatch_background($task);
DESCRIPTION
Gearman::Task is a Gearman::Client's representation of a task to be done.
USAGE
Gearman::Task->new($func, $arg, \%options)
Creates a new Gearman::Task object, and returns the object.
$func is the function name to be run. (that you have a worker registered to process)
$arg is an opaque scalar or scalarref representing the argument(s) to pass to the distributed function. If you want to pass multiple arguments, you must encode them somehow into this one. That's up to you and your worker.
%options can contain:
uniq
A key which indicates to the server that other tasks with the same function name and key will be merged into one. That is, the task will be run just once, but all the listeners waiting on that job will get the response multiplexed back to them.
Uniq may also contain the magic value "-" (a single hyphen) which means the uniq key is the contents of the args.
on_complete
A subroutine reference to be invoked when the task is completed. The subroutine will be passed a reference to the return value from the worker process.
on_fail
A subroutine reference to be invoked when the task fails (or fails for the last time, if retries were specified). The reason could be passed to this callback as an argument. This callback won't be called after a failure if more retries are still possible.
on_retry
A subroutine reference to be invoked when the task fails, but is about to be retried.
Is passed one argument, what retry attempt number this is. (starts with 1)
on_status
A subroutine reference to be invoked if the task emits status updates. Arguments passed to the subref are ($numerator, $denominator), where those are left up to the client and job to determine.
on_warning
A subroutine reference to be invoked if the task emits status updates. Arguments passed to the subref are ($numerator, $denominator), where those are left up to the client and job to determine.
retry_count
Number of times job will be retried if there are failures. Defaults to 0.
high_priority
the option high_priority is deprecated. Use
priority => high
instead. Boolean, whether this job should take priority over other jobs already enqueued.priority
valid value:
high
normal (defaul)
low
timeout
Automatically fail, calling your on_fail callback, after this many seconds have elapsed without an on_fail or on_complete being called. Defaults to 0, which means never. Bypasses any retry_count remaining.
try_timeout
Automatically fail, calling your on_retry callback (or on_fail if out of retries), after this many seconds have elapsed. Defaults to 0, which means never.
METHODS
run_hook($name)
run a hook callback if defined
add_hook($name, $cb)
add a hook
is_finished()
return bool: whether or not task is totally done (on_failure or on_complete callback has been called)
taskset()
getter
taskset($ts)
setter
return Gearman::Taskset
hash()
return undef on non-uniq packet, or the hash value (0-32767) if uniq
pack_submit_packet([$client])
return Gearman::Util::pack_req_command(mode, func, uniq, argref)
fail($reason)
final_fail($reason)
run if !is_finished
on_fail
on_post_hooks
exception($exc_ref)
$exc_ref may be a Storable serialized value
run on_exception if defined
complete($result)
$result
a reference profided to on_complete cb
status()
data()
invokes on_data
callback if worker sends work_data notification.
warning($message)
invokes on_warning
callback if worker sends work_warning notification.
handle()
getter
handle($handle)
setter for the fully-qualified handle of form "IP:port//shandle" where
shandle is an opaque handle specific to the job server running on IP:port
set_on_post_hooks($code)
wipe()
cleanup
on_post_hooks
on_complete
on_fail
on_retry
on_status
hooks
func()
timeout()
getter
timeout($t)
setter
return timeout
mode()
return mode in depends of background and priority