• PHP Video Tutorials

PHP - Threaded::wait Function



Threaded::wait - Synchronization

Syntax

public boolean Threaded::wait([ integer $timeout ] )

Threaded::wait() function can cause calling context to wait for notification from the referenced object.

Threaded::wait() function can return a boolean indication of success.

Example

<?php
   class My extends Thread {
      public function run() {
         /** cause this thread to wait **/
         $this->synchronized(function($thread) {
            if(!$thread->done)
               thread->wait();
         }, $this);
      }
   }
   $my = new My();
   $my->start();
   /** send notification to the waiting thread **/
   $my->synchronized(function($thread){
      $thread->done = true;
      $thread->notify();
   }, $my);
   var_dump($my->join());
?>
php_function_reference.htm
Advertisements