mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
47 lines
1.0 KiB
PHP
47 lines
1.0 KiB
PHP
<?php
|
|
/*
|
|
* @copyright Copyright (C) 2010-2023 Combodo SARL
|
|
* @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();
|
|
}
|
|
} |