class BrightcoveVideoPageQueueWorker in Brightcove Video Connect 8.2
Same name and namespace in other branches
- 8 src/Plugin/QueueWorker/BrightcoveVideoPageQueueWorker.php \Drupal\brightcove\Plugin\QueueWorker\BrightcoveVideoPageQueueWorker
- 3.x src/Plugin/QueueWorker/BrightcoveVideoPageQueueWorker.php \Drupal\brightcove\Plugin\QueueWorker\BrightcoveVideoPageQueueWorker
Processes Entity Update Tasks for Video.
Plugin annotation
@QueueWorker(
id = "brightcove_video_page_queue_worker",
title = @Translation("Brightcove client 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\BrightcoveVideoPageQueueWorker implements ContainerFactoryPluginInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of BrightcoveVideoPageQueueWorker
File
- src/
Plugin/ QueueWorker/ BrightcoveVideoPageQueueWorker.php, line 20
Namespace
Drupal\brightcove\Plugin\QueueWorkerView source
class BrightcoveVideoPageQueueWorker extends QueueWorkerBase implements ContainerFactoryPluginInterface {
/**
* The video queue object.
*
* @var \Drupal\Core\Queue\QueueInterface
*/
protected $videoQueue;
/**
* Constructs a new BrightcoveVideoPageQueueWorker 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\Queue\QueueInterface $video_queue
* The queue object.
*/
public function __construct(array $configuration, $plugin_id, array $plugin_definition, QueueInterface $video_queue) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->videoQueue = $video_queue;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('queue')
->get('brightcove_video_queue_worker'));
}
/**
* {@inheritdoc}
*/
public function processItem($data) {
$cms = BrightcoveUtil::getCmsApi($data['api_client_id']);
// Get videos.
$videos = $cms
->listVideos(NULL, 'created_at', $data['items_per_page'], $data['page'] * $data['items_per_page']);
foreach ($videos as $video) {
$this->videoQueue
->createItem([
'api_client_id' => $data['api_client_id'],
'video' => $video,
]);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BrightcoveVideoPageQueueWorker:: |
protected | property | The video queue object. | |
BrightcoveVideoPageQueueWorker:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
BrightcoveVideoPageQueueWorker:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |
|
BrightcoveVideoPageQueueWorker:: |
public | function |
Constructs a new BrightcoveVideoPageQueueWorker 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. |