You are here

protected property StatsTracker::$statClasses in Purge 8.3

Mapping of classes used for each counter.

Type: string[]

File

src/Plugin/Purge/Queue/StatsTracker.php, line 48

Class

StatsTracker
Provides the queue statistics tracker.

Namespace

Drupal\purge\Plugin\Purge\Queue

Code

protected $statClasses = [
  self::NUMBER_OF_ITEMS => NumberOfItemsStatistic::class,
  self::TOTAL_PROCESSING => TotalProcessingStatistic::class,
  self::TOTAL_SUCCEEDED => TotalSucceededStatistic::class,
  self::TOTAL_FAILED => TotalFailedStatistic::class,
  self::TOTAL_NOT_SUPPORTED => TotalNotSupportedStatistic::class,
];