You are here

public function TotalNotSupportedStatistic::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/TotalNotSupportedStatistic.php, line 42

Class

TotalNotSupportedStatistic
Total number of not supported invalidations.

Namespace

Drupal\purge\Plugin\Purge\Queue

Code

public function getDescription() {
  return $this
    ->t('Queue items can be unsupported at any point in time when no configured purgers supported the type of cache invalidation requested. For example, when your purger only supports "tag" but a "url" item ended up in the queue and got offered to the purger, this statistic is updated. However, it is totally possible that this same queue item later succeeds because a new version of the purger now suddenly supports this type of cache invalidation.');
}