CronQueueTestException.php
Same filename in other branches
- 8.9.x core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestException.php
- 10 core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestException.php
- 11.x core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestException.php
Namespace
Drupal\cron_queue_test\Plugin\QueueWorkerFile
-
core/
modules/ system/ tests/ modules/ cron_queue_test/ src/ Plugin/ QueueWorker/ CronQueueTestException.php
View source
<?php
namespace Drupal\cron_queue_test\Plugin\QueueWorker;
use Drupal\Core\Queue\QueueWorkerBase;
/**
* @QueueWorker(
* id = "cron_queue_test_exception",
* title = @Translation("Exception test"),
* cron = {"time" = 1}
* )
*/
class CronQueueTestException extends QueueWorkerBase {
/**
* {@inheritdoc}
*/
public function processItem($data) {
$state = \Drupal::state();
if (!$state->get('cron_queue_test_exception')) {
$state->set('cron_queue_test_exception', 1);
throw new \Exception('That is not supposed to happen.');
}
else {
$state->set('cron_queue_test_exception', 2);
}
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
CronQueueTestException | Plugin annotation @QueueWorker( id = "cron_queue_test_exception", title = @Translation("Exception test"), cron = {"time" = 1} ) |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.