public function iterate($timeout)
{
// call parent method and sleep for the default timeout
parent::iterate($timeout);
// collect the session garbage
$this->collectGarbage();
// profile the size of the sessions
if ($profileLogger = $this->getProfileLogger()) {
$profileLogger->info('Successfull collect garbage for the servlet engine\'s session manager');
}
}