Thread::notify
(PECL pthreads >= 0.34)
Thread::notify — Synchronization
Descrição
final public boolean Thread::notify
( void
)
Send notification to the referenced Thread
Parâmetros
Esta função não possui parâmetros.
Valor Retornado
A boolean indication of success
Exemplos
Exemplo #1 Notifications and Waiting
<?php
class My extends Thread {
public function run() {
/** cause this thread to wait **/
$this->synchronized(function($thread){
$thread->wait();
}, $this);
}
}
$my = new My();
$my->start();
/** send notification to the waiting thread **/
$my->synchronized(function($thread){
$thread->notify();
}, $my);
var_dump($my->join());
?>
O exemplo acima irá imprimir:
bool(true)
There are no user contributed notes for this page.
