The GearmanWorker class

(PECL gearman >= 0.5.0)

Einführung

Klassenbeschreibung

class GearmanWorker {
/* Methoden */
public __construct()
public addFunction(
    string $function_name,
    callable $function,
    mixed $context = null,
    int $timeout = 0
): bool
public addOptions(int $option): true
public addServer(string $host = null, int $port = 0, bool $setupExceptionHandler = true): bool
public addServers(string $servers = null, bool $setupExceptionHandler = true): bool
public error(): string|false
public getErrno(): int
public options(): int
public register(string $function_name, int $timeout = 0): bool
public removeOptions(int $option): true
public returnCode(): int
public setId(string $id): bool
public setOptions(int $option): true
public setTimeout(int $timeout): true
public timeout(): int
public unregister(string $function_name): bool
public wait(): bool
public work(): bool
}

Inhaltsverzeichnis

add a note add a note

User Contributed Notes 1 note

up
-5
spacewalker2002 at ukr dot net
10 years ago
For background run use:

exec("nohup php worker.php >/dev/null 2>/dev/null &");
To Top