AdvancedQueueBackend.php in Advanced Queue 8
Namespace
Drupal\advancedqueue\AnnotationFile
src/Annotation/AdvancedQueueBackend.phpView source
<?php
namespace Drupal\advancedqueue\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines an advanced queue backend.
*
* Plugin Namespace: Plugin\AdvancedQueue\Backend.
*
* @Annotation
*/
class AdvancedQueueBackend extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
}
Classes
Name | Description |
---|---|
AdvancedQueueBackend | Defines an advanced queue backend. |