Threaded::from

(PECL pthreads >= 2.0.9)

Threaded::fromCreation

Опис

public Threaded Threaded::from ( Closure $run [, Closure $construct [, array $args ]] )

Creates an anonymous Threaded object from closures

Параметри

run

The closure to use for ::run

construct

The constructor to use for anonymous object

args

The arguments to pass to constructor

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

A new anonymous Threaded object

Приклади

Приклад #1 Thread safe objects from closures

<?php
$pool 
= new Pool(4);
$pool->submit(Collectable::from(function(){
    echo 
"Hello World";
    
$this->setGarbage();
}));
/* ... */
$pool->shutdown();
?>

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

Hello World

add a note add a note

User Contributed Notes

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