You are here

public function CronJob::finishProgress in Ultimate Cron 8.2

Finish progress.

Overrides CronJobInterface::finishProgress

1 call to CronJob::finishProgress()
CronJob::run in src/Entity/CronJob.php
Run job.

File

src/Entity/CronJob.php, line 623

Class

CronJob
Class for handling cron jobs.

Namespace

Drupal\ultimate_cron\Entity

Code

public function finishProgress() {
  return $this
    ->getPlugin('launcher')
    ->finishProgress($this);
}