Worker::isShutdown

(PECL pthreads >= 2.0.0)

Worker::isShutdownState Detection

Опис

public boolean Worker::isShutdown ( void )

Tell if the referenced Worker has been shutdown

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

A boolean indication of state

Приклади

Приклад #1 Detect the state of a Worker

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

Наведений вище приклад виведе:

bool(false)
bool(true)

add a note add a note

User Contributed Notes

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