= 0.5.0)GearmanClient::addTaskHighBackground — Add a high priority background task to be run in par">

GearmanClient::addTaskHighBackground

(PECL gearman >= 0.5.0)

GearmanClient::addTaskHighBackgroundAdd a high priority background task to be run in parallel

說明

public GearmanClient::addTaskHighBackground(
    string $function_name,
    string $workload,
    mixed &$context = ?,
    string $unique = ?
): GearmanTask

Adds a high priority background 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. Tasks with a high priority will be selected from the queue before those of normal or low priority.

參數(shù)

function_name

由程序自動執(zhí)行的已注冊函數(shù)。

workload

被處理的序列化數(shù)據(jù)。

context

與任務(wù)關(guān)聯(lián)的應(yīng)用程序上下文。

unique

用于標(biāo)識特定任務(wù)的唯一性 ID。

返回值

A GearmanTask object or false if the task could not be added.

參見