Stackable
PHP Manual

Stackable::isRunning

(PECL pthreads >= 0.36)

Stackable::isRunningState Detection

说明

final public boolean Stackable::isRunning ( void )

A Stackable is running when a Worker Thread is executing it

参数

此函数没有参数。

返回值

A boolean indication of state

范例

Example #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();
$work->synchronized(function($object){
        
$object->notify();
}, 
$work);
?>

以上例程会输出:

bool(true)


Stackable
PHP Manual