downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Thread::run> <Thread::lock
[edit] Last updated: Wed, 22 May 2013

view this page in

Thread::notify

(PECL pthreads >= 0.34)

Thread::notifySynchronization

Description

final public boolean Thread::notify ( void )

Send notification to the referenced Thread

Parameters

This function has no parameters.

Return Values

A boolean indication of success

Examples

Example #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());
?>

The above example will output:

bool(true)



add a note add a note User Contributed Notes Thread::notify - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites