class MessageSubscribe in Message Subscribe 8
Queue worker to process sending of message subscriptions.
Plugin annotation
@QueueWorker(
id = "message_subscribe",
title = @Translation("Process bounced emails"),
cron = {"time" = 60}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
- class \Drupal\message_subscribe\Plugin\QueueWorker\MessageSubscribe implements ContainerFactoryPluginInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of MessageSubscribe
File
- src/
Plugin/ QueueWorker/ MessageSubscribe.php, line 19
Namespace
Drupal\message_subscribe\Plugin\QueueWorkerView source
class MessageSubscribe extends QueueWorkerBase implements ContainerFactoryPluginInterface {
/**
* The message subscription service.
*
* @var \Drupal\message_subscribe\SubscribersInterface
*/
protected $subscribers;
/**
* Constructs the queue worker.
*
* {@inheritdoc}
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, SubscribersInterface $subscribers) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->subscribers = $subscribers;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('message_subscribe.subscribers'));
}
/**
* {@inheritdoc}
*/
public function processItem($data) {
$message = $data['message'];
$entity = $data['entity'];
$notify_options = $data['notify_options'];
$subscribe_options = $data['subscribe_options'];
$context = $data['context'];
// Reload message and entity.
$message = $message
->load($message
->id());
$entity = $entity
->load($entity
->id());
if (!$entity || !$message) {
return;
}
// Denotes this is being processed from a queue worker.
$subscribe_options['queue'] = TRUE;
$this->subscribers
->sendMessage($entity, $message, $notify_options, $subscribe_options, $context);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MessageSubscribe:: |
protected | property | The message subscription service. | |
MessageSubscribe:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
MessageSubscribe:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |
|
MessageSubscribe:: |
public | function |
Constructs the queue worker. 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. |