class CronQueueTestBrokenQueue
Same name in other branches
- 8.9.x core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestBrokenQueue.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestBrokenQueue
Plugin annotation
@QueueWorker(
id = "cron_queue_test_broken_queue",
title = @Translation("Broken queue test"),
cron = {"time" = 60}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements \Drupal\Component\Plugin\PluginInspectionInterface, \Drupal\Component\Plugin\DerivativeInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase extends \Drupal\Component\Plugin\PluginBase implements \Drupal\Core\Queue\QueueWorkerInterface
- class \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestBrokenQueue extends \Drupal\Core\Queue\QueueWorkerBase
- class \Drupal\Core\Queue\QueueWorkerBase extends \Drupal\Component\Plugin\PluginBase implements \Drupal\Core\Queue\QueueWorkerInterface
Expanded class hierarchy of CronQueueTestBrokenQueue
File
-
core/
modules/ system/ tests/ modules/ cron_queue_test/ src/ Plugin/ QueueWorker/ CronQueueTestBrokenQueue.php, line 15
Namespace
Drupal\cron_queue_test\Plugin\QueueWorkerView source
class CronQueueTestBrokenQueue extends QueueWorkerBase {
/**
* {@inheritdoc}
*/
public function processItem($data) {
if ($data == 'crash') {
throw new SuspendQueueException('The queue is broken.');
}
// Do nothing otherwise.
}
}
Members
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.