class BrightcoveVideoLocalDeleteQueueWorker in Brightcove Video Connect 8.2
Same name and namespace in other branches
- 8 src/Plugin/QueueWorker/BrightcoveVideoLocalDeleteQueueWorker.php \Drupal\brightcove\Plugin\QueueWorker\BrightcoveVideoLocalDeleteQueueWorker
- 3.x src/Plugin/QueueWorker/BrightcoveVideoLocalDeleteQueueWorker.php \Drupal\brightcove\Plugin\QueueWorker\BrightcoveVideoLocalDeleteQueueWorker
Processes Entity Local Delete Tasks for Video.
Plugin annotation
@QueueWorker(
id = "brightcove_video_local_delete_queue_worker",
title = @Translation("Brightcove video local delete queue worker."),
cron = { "time" = 30 }
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
- class \Drupal\brightcove\Plugin\QueueWorker\BrightcoveVideoLocalDeleteQueueWorker implements ContainerFactoryPluginInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of BrightcoveVideoLocalDeleteQueueWorker
File
- src/
Plugin/ QueueWorker/ BrightcoveVideoLocalDeleteQueueWorker.php, line 19
Namespace
Drupal\brightcove\Plugin\QueueWorkerView source
class BrightcoveVideoLocalDeleteQueueWorker extends QueueWorkerBase implements ContainerFactoryPluginInterface {
/**
* The brightcove_video storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $storage;
/**
* Constructs a new BrightcoveVideoLocalDeleteQueueWorker object.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param array $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Entity\EntityStorageInterface $storage
* Brightcove Video Entity storage.
*/
public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityStorageInterface $storage) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->storage = $storage;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager')
->getStorage('brightcove_video'));
}
/**
* {@inheritdoc}
*/
public function processItem($data) {
/** @var \Drupal\brightcove\Entity\BrightcoveVideo $video */
$video = $this->storage
->load($data);
if (!is_null($video)) {
$video
->delete(TRUE);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BrightcoveVideoLocalDeleteQueueWorker:: |
protected | property | The brightcove_video storage. | |
BrightcoveVideoLocalDeleteQueueWorker:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
BrightcoveVideoLocalDeleteQueueWorker:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |
|
BrightcoveVideoLocalDeleteQueueWorker:: |
public | function |
Constructs a new BrightcoveVideoLocalDeleteQueueWorker object. Overrides PluginBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. |