QueuerInterface.php in Purge 8.3
Namespace
Drupal\purge\Plugin\Purge\QueuerFile
src/Plugin/Purge/Queuer/QueuerInterface.phpView 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
Name | Description |
---|---|
QueuerInterface | Describes a plugin that queues invalidation objects. |