CakeFest 2024: The Official CakePHP Conference

GearmanWorker::setId

(No version information available, might only be in Git)

GearmanWorker::setIdGive the worker an identifier so it can be tracked when asking gearmand for the list of available workers

Descrição

public GearmanWorker::setId(string $id): bool

Assigns the worker an identifier.

Parâmetros

id

A string identifier.

Valor Retornado

Retorna true em caso de sucesso ou false em caso de falha.

Exemplos

Exemplo #1 GearmanWorker::setId() example

Set an identifier for a simple worker.

<?php
$worker
= new GearmanWorker();
$worker->setId('test');
?>

O exemplo acima produzirá algo semelhante a:

Run the following command:
gearadmin --workers

Output:
30 ::3a3a:3361:3361:3a33%976303667 - : test
add a note

User Contributed Notes 1 note

up
2
zymspy at 163 dot com
9 years ago
Example #1 is wrong
The Output is nearly like:
[no] [IP] [ID] : [function_name] [function_name] ...

Such as:
73 127.0.0.1 collect : ping_collect snmp_collect
To Top