PHP - Funzione Threaded :: from ()
Filettato :: da - Creazione.
Sintassi
public Threaded Threaded::from( Closure $run [, Closure $construct [, array $args ]] )
Threaded :: from può creare un oggetto Threaded anonimo dalle chiusure.
Threaded :: from può restituire un nuovo oggetto Threaded anonimo.
Esempio
<?php
$pool = new Pool(5, Worker::class);
$foo = "tutotialspoint";
$pool->submit(Collectable::from(function () use ($foo) {
var_dump($foo);
$this->setGarbage();
}));
$pool->shutdown();