Worker
PHP Manual

Worker::isShutdown

(PECL pthreads >= 2.0.0)

Worker::isShutdownState Detection

Descrierea

public boolean Worker::isShutdown ( void )

Tell if the referenced Worker has been shutdown

Parametri

Această funcție nu are parametri.

Valorile întoarse

A boolean indication of state

Exemple

Example #1 Detect the state of a Worker

<?php
$my 
= new Worker();
$my->start();
var_dump($my->isShutdown());
$my->shutdown();
var_dump($my->isShutdown());
?>

Exemplul de mai sus va afișa:

bool(false)
bool(true)


Worker
PHP Manual