A função Pool :: collect () pode coletar referências para tarefas concluídas.
Sintaxe
public int Pool::collect([ Callable $collector ] )
A função Pool :: collect () pode permitir que um pool colete referências determinadas como lixo por um coletor fornecido opcionalmente.
A função Pool :: collect () pode retornar o número de tarefas restantes em um pool a serem coletadas.
Exemplo
<?php
class MyWork extends Stackable {
public function __construct() {
$this->complete = false;
}
public function run() {
printf("Hello from %s in Thread #%lu\n", __CLASS__, $this->worker->getThreadId());
$this->complete = true;
}
public function isComplete() {
return $this->complete;
}
protected $complete;
}
class MyWorker extends Worker {
public function __construct(Something $something) {
$this->something = $something;
}
public function run() {
/** ... **/
}
}
$pool = new Pool(8, \MyWorker::class, [new Something()]);
$pool->submit(new MyWork());
usleep(1000);
$pool->collect(function($work){
return $work->isComplete();
});
var_dump($pool);
?>