/**
* Returns the next cron job who is due to execute
*
* @param bool $force
*
* @return Enlight_Components_Cron_Job|null
*/
public function getNextJob($force = false)
{
return $this->adapter->getNextJob($force);
}
/**
* Runs a job by handing it over to
*
* @throws Throwable
*
* @return Enlight_Event_EventArgs
*/
public function runJob(Enlight_Components_Cron_Job $job)
{