Files
iTop/sources/Service/TemporaryObjects/TemporaryObjectGC.php
2024-05-06 18:35:31 +02:00

47 lines
1.0 KiB
PHP

<?php
/*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Service\TemporaryObjects;
use iBackgroundProcess;
/**
* TemporaryObjectGC.
*
* Background task to collect and garbage expired temporary objects..
*
* @experimental do not use, this feature will be part of a future version
*
* @since 3.1
*/
class TemporaryObjectGC implements iBackgroundProcess
{
/** @var TemporaryObjectManager */
private TemporaryObjectManager $oTemporaryObjectManager;
/**
* Constructor.
*
*/
public function __construct()
{
// Retrieve service dependencies
$this->oTemporaryObjectManager = TemporaryObjectManager::GetInstance();
}
/** @inheritDoc * */
public function GetPeriodicity()
{
return TemporaryObjectConfig::GetInstance()->GetWatchdogInterval();
}
/** @inheritDoc * */
public function Process($iUnixTimeLimit)
{
// Garbage temporary objects
$this->oTemporaryObjectManager->GarbageExpiredTemporaryObjects();
}
}