class ReportWorkerTwo in Examples for Developers 8
Same name and namespace in other branches
- 3.x modules/cron_example/src/Plugin/QueueWorker/ReportWorkerTwo.php \Drupal\cron_example\Plugin\QueueWorker\ReportWorkerTwo
A report worker.
@QueueWorker( id = "cron_example_queue_2", title = @Translation("Second worker in cron_example"), cron = {"time" = 20} )
QueueWorkers are new in Drupal 8. They define a queue, which in this case is identified as cron_example_queue_2 and contain a process that operates on all the data given to the queue.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
- class \Drupal\cron_example\Plugin\QueueWorker\ReportWorkerBase implements ContainerFactoryPluginInterface uses MessengerTrait, StringTranslationTrait
- class \Drupal\cron_example\Plugin\QueueWorker\ReportWorkerTwo
- class \Drupal\cron_example\Plugin\QueueWorker\ReportWorkerBase implements ContainerFactoryPluginInterface uses MessengerTrait, StringTranslationTrait
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of ReportWorkerTwo
See also
File
- cron_example/
src/ Plugin/ QueueWorker/ ReportWorkerTwo.php, line 20
Namespace
Drupal\cron_example\Plugin\QueueWorkerView source
class ReportWorkerTwo extends ReportWorkerBase {
/**
* {@inheritdoc}
*/
public function processItem($data) {
$this
->reportWork(2, $data);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
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. | |
ReportWorkerBase:: |
protected | property | The logger. | |
ReportWorkerBase:: |
protected | property | The state. | |
ReportWorkerBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
ReportWorkerBase:: |
protected | function | Simple reporter log and display information about the queue. | |
ReportWorkerBase:: |
public | function |
ReportWorkerBase constructor. Overrides PluginBase:: |
|
ReportWorkerTwo:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |