Worker::getStacked

(PECL pthreads >= 2.0.0)

Worker::getStackedStack Analysis

Опис

public integer Worker::getStacked ( void )

Returns the number of objects waiting to be executed by the referenced Worker

Параметри

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

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

An numeric value

Приклади

Приклад #1 Returns the number of objects currently waiting to be executed by the referenced Worker

<?php
class Work extends Threaded {
    
/** ... **/

    
public function run(){
        
/** ... **/
    
}
}
$my = new Worker();
/** ... **/
$work = new Work();
$my->stack($work);
/** ... **/
printf("My worker has %d jobs remaining\n"$my->getStacked());
/** ... **/
?>

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

My worker has 5 jobs remaining

add a note add a note

User Contributed Notes

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