Worker::start
(PECL pthreads >= 0.36)
Worker::start — Execution
Descrierea
final public boolean Worker::start
([ long
$options
] )Will start a new Thread, executing Worker::run and then waiting for Stackables
Parametri
-
options -
An optional mask of inheritance constants, by default PTHREADS_INHERIT_ALL
Valorile întoarse
A boolean indication of success
Exemple
Example #1 Starting Workers
<?php
class My extends Worker {
public function run() {
/** ... **/
}
}
$my = new My();
var_dump($my->start());
?>
Exemplul de mai sus va afișa:
bool(true)
There are no user contributed notes for this page.
