AppserverIo\Appserver\PersistenceContainer\StandardGarbageCollector::iterate PHP Метод

iterate() публичный Метод

This is invoked on every iteration of the daemons while() loop.
public iterate ( integer $timeout ) : void
$timeout integer The timeout before the daemon wakes up
Результат void
    public function iterate($timeout)
    {
        // call parent method and sleep for the default timeout
        parent::iterate($timeout);
        // collect the SFSBs that timed out
        $this->collectGarbage();
    }