/** * interface iBackgroundProcess * Any extension that must be called regularly to be executed in the background * * @copyright Copyright (C) 2010-2012 Combodo SARL * @license http://opensource.org/licenses/AGPL-3.0 */ interface iBackgroundProcess { public function GetPeriodicity(); public function Process($iUnixTimeLimit); } ?>