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

search for in the

Stackable::lock> <Stackable::isTerminated
[edit] Last updated: Fri, 17 May 2013

view this page in

Stackable::isWaiting

(PECL pthreads >= 0.36)

Stackable::isWaitingState Detection

Descripción

final public boolean Stackable::isWaiting ( void )

Tell if the referenced Stackable is waiting for notification

Parámetros

Esta función no tiene parámetros.

Valores devueltos

A boolean indication of state

Ejemplos

Ejemplo #1 Detect the state of the referenced Stackable

<?php
class Work extends Stackable {
    public function 
run() {
        
$this->synchronized(function($object){
            
$object->wait();
        }, 
$this);
    }
}

class 
My extends Worker {
    public function 
run() {
        
/** ... **/
    
}
}

$my = new My();
$work = new Work();
$my->stack($work);
$my->start();
usleep(10000);

$work->synchronized(function($object){
    
var_dump($object->isWaiting());
    
$object->notify();
}, 
$work);
?>

El resultado del ejemplo sería:

bool(true)



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

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