You are here

QueuerInterface.php in Purge 8.3

File

src/Plugin/Purge/Queuer/QueuerInterface.php
View source
<?php

namespace Drupal\purge\Plugin\Purge\Queuer;

use Drupal\Component\Plugin\PluginInspectionInterface;

/**
 * Describes a plugin that queues invalidation objects.
 */
interface QueuerInterface extends PluginInspectionInterface {

  /**
   * Retrieve the title of this queuer.
   *
   * @return \Drupal\Core\StringTranslation\TranslatableMarkup
   *   The translated label.
   */
  public function getLabel();

  /**
   * Retrieve the description of this queuer.
   *
   * @return \Drupal\Core\StringTranslation\TranslatableMarkup
   *   The translated description.
   */
  public function getDescription();

}

Interfaces

Namesort descending Description
QueuerInterface Describes a plugin that queues invalidation objects.