public function CronJob::getProgress in Ultimate Cron 8.2
Get job progress.
Return value
float The progress of this job.
Overrides CronJobInterface::getProgress
1 call to CronJob::getProgress()
- CronJob::formatProgress in src/
Entity/ CronJob.php - Format progress.
File
- src/
Entity/ CronJob.php, line 633
Class
- CronJob
- Class for handling cron jobs.
Namespace
Drupal\ultimate_cron\EntityCode
public function getProgress() {
return $this
->getPlugin('launcher')
->getProgress($this);
}