You are here

public function ProgressMemcache::__construct in Ultimate Cron 8.2

Constructor.

Parameters

string $name: Name of job.

float $interval: How often the database should be updated with the progress.

File

src/Progress/ProgressMemcache.php, line 21

Class

ProgressMemcache

Namespace

Drupal\ultimate_cron\Progress

Code

public function __construct($name, $interval = 1) {
  $this->name = $name;
  $this->interval = $interval;
}