PHP - Função Thread :: isJoined ()

Thread :: isJoined - Detecção de estado

Sintaxe

public boolean Thread::isJoined( void )

A função Thread :: isJoined () pode dizer se o Thread referenciado foi unido.

A função Thread :: isJoined () não tem nenhum parâmetro e pode retornar uma indicação booleana do estado.

Exemplo

<?php
   class My extends Thread {
      public function run() {
         $this->synchronized(function($thread) {
            $thread->wait();
         }, $this);
      }
   }
   $my = new My();
   $my->start();
   var_dump($my->isJoined());
   $my->synchronized(function($thread){
      $thread->notify();
   }, $my);
?>