downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Worker::run> <Worker::isShutdown
[edit] Last updated: Thu, 20 Jun 2013

view this page in

Worker::isWorking

(PECL pthreads >= 0.37)

Worker::isWorkingState Detection

Descrierea

final public boolean Worker::isWorking ( void )

Tell if a Worker is executing Stackables

Parametri

Această funcție nu are parametri.

Valorile întoarse

A boolean indication of state

Exemple

Example #1 Detect the state of a Worker

<?php
class My extends Worker {
    public function 
run() {
        
/* ... */
    
}
}
$my = new My();
$my->start();
/* ... */
if ($my->isWorking()) {
    
/* ... the Worker is busy executing another object */
}
?>



add a note add a note User Contributed Notes Worker::isWorking - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites