The GearmanClient class
(PECL gearman >= 0.5.0)
소개
Represents a class for connecting to a Gearman job server and making requests to perform
some function on provided data. The function performed must be one registered by a Gearman
worker and the data passed is opaque to the job server.
클래스 개요
GearmanClient
{
public bool addServer
([
string $host
= 127.0.0.1
[,
int $port
= 4730
]] )
public bool addServers
([
string $servers
= 127.0.0.1:4730
] )
public GearmanTask addTask
(
string $function_name
,
string $workload
[,
mixed &$context
[,
string $unique
]] )
public GearmanTask addTaskBackground
(
string $function_name
,
string $workload
[,
mixed &$context
[,
string $unique
]] )
public GearmanTask addTaskHigh
(
string $function_name
,
string $workload
[,
mixed &$context
[,
string $unique
]] )
public GearmanTask addTaskLow
(
string $function_name
,
string $workload
[,
mixed &$context
[,
string $unique
]] )
public GearmanTask addTaskStatus
(
string $job_handle
[,
string &$context
] )
public GearmanClient clone
(
void
)
public string data
(
void
)
public string do
(
string $function_name
,
string $workload
[,
string $unique
] )
public string doBackground
(
string $function_name
,
string $workload
[,
string $unique
] )
public string doHigh
(
string $function_name
,
string $workload
[,
string $unique
] )
public string doHighBackground
(
string $function_name
,
string $workload
[,
string $unique
] )
public string doLow
(
string $function_name
,
string $workload
[,
string $unique
] )
public string doLowBackground
(
string $function_name
,
string $workload
[,
string $unique
] )
public string doNormal
(
string $function_name
,
string $workload
[,
string $unique
] )
public bool echo
(
string $workload
)
public string error
(
void
)
public array jobStatus
(
string $job_handle
)
public bool ping
(
string $workload
)
public bool setData
(
string $data
)
}
Table of Contents
There are no user contributed notes for this page.