downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

GearmanClient::setContext> <GearmanClient::setClientCallback
[edit] Last updated: Tue, 21 May 2013

view this page in

GearmanClient::setCompleteCallback

(PECL gearman >= 0.5.0)

GearmanClient::setCompleteCallbackSet a function to be called on task completion

说明

public bool GearmanClient::setCompleteCallback ( callable $callback )

Use to set a function to be called when a task is completed. The callback function should accept a single argument, a GearmanTask oject.

参数

callback

A function to be called

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE

参见



add a note add a note User Contributed Notes GearmanClient::setCompleteCallback - [1 notes]
up
0
Justas Butkus
1 year ago
One shall note, that callback function MUST either return a valid Gearman status code, or return nothing (do not return).

I.e. these are valid complete callbacks:

<?php
function goodCallbackOne(GearmanTask $task)
{
   
print_r($task);
}
?>

<?php
function goodCallbackTwo(GearmanTask $task)
{
   
print_r($task);
    return
GEARMAN_SUCCESS;
}
?>

While following is NOT, unless you want your client code to fail with Gearman error 'german wait:no active file descriptors':

<?php
function badCallbackTwo(GearmanTask $task)
{
   
print_r($task);
    return
true;
}
?>

 
show source | credits | sitemap | contact | advertising | mirror sites