Worker::start

(PECL pthreads >= 0.36)

Worker::start — Execution


Описание

final public boolean Worker::start ([ long $options ] )

Will start a new Thread, executing Worker::run and then waiting for Stackables


Список параметров

options - An optional mask of inheritance constants, by default PTHREADS_INHERIT_ALL


Возвращаемые значения

A boolean indication of success


Примеры

Пример #1 Starting Workers

class My extends Worker {
    public function run() {
        /** ... **/
    }
}
$my = new My();
var_dump($my->start());

Результат выполнения данного примера:


bool(true)


User Contributed Notes


There are no user contributed notes for this page.
To Top

Описание класса worker, примеры использования класса worker.



Смотрите также:
Описание на ru2.php.net
Описание на php.ru