abstract public function UltimateCronLauncher::isLocked in Ultimate Cron 7.2
Check if a job is locked.
Parameters
UltimateCronJob $job: The job to check.
Return value
string Lock ID of the locked job, FALSE if not locked.
1 call to UltimateCronLauncher::isLocked()
- UltimateCronLauncher::isLockedMultiple in ./
ultimate_cron.plugin.inc - Fallback implementation of multiple lock check.
2 methods override UltimateCronLauncher::isLocked()
- UltimateCronBackgroundProcessLegacyLauncher::isLocked in plugins/
ultimate_cron/ launcher/ background_process_legacy.class.php - Check locked state.
- UltimateCronSerialLauncher::isLocked in plugins/
ultimate_cron/ launcher/ serial.class.php - Check if job is locked.
File
- ./
ultimate_cron.plugin.inc, line 949 - Plugin framework for Ultimate Cron.
Class
- UltimateCronLauncher
- Abstract class for Ultimate Cron launchers.
Code
public abstract function isLocked($job);