|
GearmanClient::addTaskAdd a task to be run in parallel Description
public GearmanTaskfalse GearmanClient::addTask(
string $function_name ,stringintfloat $workload ,mixed $context = null ,stringnull $unique_key = null ) Adds a task to be run in parallel with other tasks. Call this method for all the tasks to be run in parallel, then call GearmanClient::runTasks to perform the work. Note that enough workers need to be available for the tasks to all run in parallel. Parameters
Return Values
A GearmanTask object or Examples
Example #1 Basic submission of two tasks
The above example will output something similar to: COMPLETE: 2, Hello World! COMPLETE: 1, !dlroW olleH Example #2 Basic submission of two tasks with passing application context
The above example will output something similar to: t2: H.foo:21, Hello World! t1: H:foo:22, !dlroW olleH See Also
|