(PECL pthreads >= 2.0.0)
Worker::isShutdown — State Detection
public Worker::isShutdown ( ) : bool
Whether the worker has been shutdown or not.
This function has no parameters.
Returns whether the worker has been shutdown or not.
Example #1 Detect the state of a worker
<?php $worker = new Worker(); $worker->start(); var_dump($worker->isShutdown()); $worker->shutdown(); var_dump($worker->isShutdown());
The above example will output:
bool(false) bool(true)
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/worker.isshutdown.php