Threaded::isWaiting

(PECL pthreads >= 2.0.0)

Threaded::isWaitingState Detection

설명

public boolean Threaded::isWaiting ( void )

Tell if the referenced object is waiting for notification

인수

이 함수는 인수가 없습니다.

반환값

A boolean indication of state

예제

Example #1 Detect the state of the referenced object

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

위 예제의 출력:

bool(true)

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top