PHP - Função Threaded :: synchronized ()

Threaded :: synchronized - Sincronização

Sintaxe

public mixed Threaded::synchronized( Closure $block [, mixed $... ] )

A função Threaded :: synchronized () pode executar o bloco enquanto retém um bloqueio de sincronização de objetos referenciados para o contexto de chamada.

A função Threaded :: synchronized () pode retornar um valor do bloco.

Exemplo

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