PHP - Threaded::isWaiting() 函数



Threaded::isWaiting - 状态检测。

语法

public boolean Threaded::isWaiting( void )

Threaded::isWaiting 函数可以判断引用的对象是否正在等待通知。

Threaded::isWaiting 函数没有任何参数,可以返回一个表示状态的布尔值。

示例

<?php
   class My extends Thread {
      public function run() {
         $this->synchronized(function($thread) {
            if(!$this->done)
               $thread->wait();
         }, $this);
      }
      protected $done;
   }
   $my = new My();
   $my->start();
   $my->synchronized(function($thread) {
      var_dump($thread->isWaiting());
      $thread->done = true;
      $thread->notify();
   }, $my);
?>
php_function_reference.htm
广告