You are here

public function TotalProcessingStatistic::getDescription in Purge 8.3

Gets the description of the counter.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The translated description.

Overrides ExplainedCounterInterface::getDescription

File

src/Plugin/Purge/Queue/TotalProcessingStatistic.php, line 34

Class

TotalProcessingStatistic
Total number of multi-step cache invalidations.

Namespace

Drupal\purge\Plugin\Purge\Queue

Code

public function getDescription() {
  return $this
    ->t('This counter keeps track of queue items that require multi-step execution to complete. This is most common for CDNs that require later API calls in the future to find out whether the requested cache invalidation succeeded or failed. These items cycle back to the queue until the purger marks them as succeeded or failed.');
}