GearmanClient::addOptions

(PECL gearman >= 0.6.0)

GearmanClient::addOptionsAdiciona opções do cliente

Descrição

public GearmanClient::addOptions(int $option): bool

Adiciona uma ou mais opções àquelas já definidas.

Parâmetros

option

As opções para adicionar. Uma das seguintes constantes, ou uma combinação delas usando o operador OR bit a bit (|): GEARMAN_CLIENT_GENERATE_UNIQUE, GEARMAN_CLIENT_NON_BLOCKING, GEARMAN_CLIENT_UNBUFFERED_RESULT ou GEARMAN_CLIENT_FREE_TASKS.

Valor Retornado

Sempre retorna true.

adicione uma nota

Notas Enviadas por Usuários (em inglês) 1 note

up
2
goran dot v dot miskovic at gmail dot com
12 years ago
To add multiple options at once use pipe separated list.
<?php
$client
= new GearmanClient();
$client->addOptions(GEARMAN_CLIENT_NON_BLOCKING | GEARMAN_CLIENT_FREE_TASKS | GEARMAN_CLIENT_UNBUFFERED_RESULT);
?>
To Top