class MandrillQueueProcessor in Mandrill 8
Sends queued mail messages.
Plugin annotation
@QueueWorker(
id = "mandrill_queue",
title = @Translation("Sends queued mail messages"),
cron = {"time" = 60}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
- class \Drupal\mandrill\Plugin\QueueWorker\MandrillQueueProcessor
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of MandrillQueueProcessor
File
- src/
Plugin/ QueueWorker/ MandrillQueueProcessor.php, line 16
Namespace
Drupal\mandrill\Plugin\QueueWorkerView source
class MandrillQueueProcessor extends QueueWorkerBase {
/**
* Constructor.
*/
public function __construct() {
$config = \Drupal::service('config.factory')
->get('mandrill.settings');
$this->cron['time'] = $config
->get('mandrill_queue_worker_timeout', 60);
}
/**
* {@inheritdoc}
*/
public function processItem($data) {
/* @var $mandrill \Drupal\mandrill\MandrillService */
$mandrill = \Drupal::service('mandrill.service');
$mandrill
->send($data['message']);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MandrillQueueProcessor:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |
|
MandrillQueueProcessor:: |
public | function |
Constructor. 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. |