PHP - Worker::isWorking() 函数



Worker::isWorking - 状态检测

语法

public boolean Worker::isWorking( void )

Worker::isWorking() 函数可以判断 Worker 是否正在执行 Stackables。

Worker::isWorking() 函数没有任何参数,并返回一个表示状态的布尔值。

示例

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