class CronQueueTestLeaseTime in Drupal 10
Plugin annotation
@QueueWorker(
id = "cron_queue_test_lease_time",
title = @Translation("Lease time test"),
cron = {"time" = 100}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
- class \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestLeaseTime
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of CronQueueTestLeaseTime
File
- core/
modules/ system/ tests/ modules/ cron_queue_test/ src/ Plugin/ QueueWorker/ CronQueueTestLeaseTime.php, line 14
Namespace
Drupal\cron_queue_test\Plugin\QueueWorkerView source
class CronQueueTestLeaseTime extends QueueWorkerBase {
/**
* {@inheritdoc}
*/
public function processItem($data) {
$state = \Drupal::state();
$count = $state
->get('cron_queue_test_lease_time', 0);
$count++;
$state
->set('cron_queue_test_lease_time', $count);
throw new \Exception('Leave me queued and leased!');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CronQueueTestLeaseTime:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | |
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 | ||
PluginBase:: |
public | function | ||
PluginBase:: |
public | function | 2 | |
PluginBase:: |
public | function | ||
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 53 |