Worker
PHP Manual

Worker::shutdown

(PECL pthreads >= 0.37)

Worker::shutdownSynchronization

Descrierea

final public boolean Worker::shutdown ( void )

Shuts down the Worker after executing all the Stackables previously stacked

Parametri

Această funcție nu are parametri.

Valorile întoarse

Exemple

Example #1 Shutdown the referenced Worker

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

Exemplul de mai sus va afișa:

bool(true)


Worker
PHP Manual