class SparkpostSend in Sparkpost email 8.2
Sends a message with sparkpost.
Plugin annotation
@QueueWorker(
id = "sparkpost_send",
title = @Translation("Send sparkpost message"),
cron = {"time" = 60}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
- class \Drupal\sparkpost\Plugin\QueueWorker\SparkpostSend
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of SparkpostSend
File
- src/
Plugin/ QueueWorker/ SparkpostSend.php, line 17
Namespace
Drupal\sparkpost\Plugin\QueueWorkerView source
class SparkpostSend extends QueueWorkerBase {
/**
* {@inheritdoc}
*/
public function processItem($data) {
if ($data instanceof MessageWrapperInterface) {
try {
$data
->sendMessage();
} catch (\Exception $e) {
// @todo Handle different exceptions, and possibly react differently.
// For example could we use SuspendQueueException when we get some sort
// of http error.
throw $e;
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 92 |
SparkpostSend:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |