Worker::isShutdown

(PECL pthreads >= 2.0.0)

Worker::isShutdownState Detection

Descrierea

public Worker::isShutdown ( void ) : bool

Whether the worker has been shutdown or not.

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns whether the worker has been shutdown or not.

Exemple

Example #1 Detect the state of a worker

<?php
$worker 
= new Worker();
$worker->start();

var_dump($worker->isShutdown());

$worker->shutdown();

var_dump($worker->isShutdown());

Exemplul de mai sus va afișa:

bool(false)
bool(true)