public function StatsTracker::totalProcessing in Purge 8.3
Total number of multi-step cache invalidations.
Return value
\Drupal\purge\Plugin\Purge\Queue\TotalProcessingStatistic The \Drupal\purge\CounterExplainedCounterInterface compliant statistic.
Overrides StatsTrackerInterface::totalProcessing
File
- src/
Plugin/ Purge/ Queue/ StatsTracker.php, line 139
Class
- StatsTracker
- Provides the queue statistics tracker.
Namespace
Drupal\purge\Plugin\Purge\QueueCode
public function totalProcessing() {
$this
->initializeStatistics();
return $this->instances[self::TOTAL_PROCESSING];
}