A função Worker :: collect () pode coletar referências para tarefas concluídas.
Sintaxe
public int Worker::collect([ Callable $collector ] )
A função Worker :: collect () pode permitir que um trabalhador colete referências determinadas como lixo pelo coletor fornecido opcionalmente.
A função Worker :: collect () pode retornar o número de tarefas restantes na pilha do trabalhador a serem coletadas.
Exemplo
<?php
$worker = new Worker();
echo "There are currently {$worker->collect()} tasks on the stack to be collected\n";
for($i = 0; $i < 15; ++$i) {
$worker->stack(new class extends Threaded {});
}
echo "There are {$worker->collect()} tasks remaining on the stack to be collected\n";
$worker->start();
while($worker->collect()); // blocks until all tasks have finished executing
echo "There are now {$worker->collect()} tasks on the stack to be collected\n";
$worker->shutdown();
?>