Threaded::isRunning

(PECL pthreads >= 2.0.0)

Threaded::isRunningState Detection

Açıklama

public function Threaded::isRunning(): bool

Tell if the referenced object is executing

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

A boolean indication of state

Bilginize: An object is considered running while executing the run method

Örnekler

Örnek 1 Detect the state of the referenced object

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

Yukarıdaki örneğin çıktısı:

bool(true)
add a note

User Contributed Notes

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