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

예제

Example #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