GearmanTask::jobHandle

gearman_job_handle

(PECL gearman >= 0.5.0)

GearmanTask::jobHandle -- gearman_job_handleObtiene el manejador de trabajos

Descripción

public GearmanTask::jobHandle(): false|string

Obtiene el manejador de trabajos para esta tarea.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

El manejador de trabajos, o false si la tarea no ha sido creada aún.

Ver también

add a note

User Contributed Notes 1 note

up
3
chris at cmbuckley dot co dot uk
11 years ago
The job handle is not assigned until the task is received and queued by the job server, so you will need to use one of the client callbacks to access the handle:

<?php
$client
->setCreatedCallback(function ($task) {
var_dump($task->jobHandle()); // "H:server:1"
});
$task = $client->addTask('function', 'workload');
var_dump($task->jobHandle()); // ""
To Top