(PECL pthreads >= 2.0.0)
Synchronization
public boolean Threaded::notify ( void )
Send notification to the referenced object
Returns:
A boolean indication of success
Examples:
Notifications and Waiting
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?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()); ?> |
The above example will output:
bool(true)
Please login to continue.