function CronQueueTestRequeueException::processItem
Same name in other branches
- 8.9.x core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestRequeueException.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestRequeueException::processItem()
- 10 core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestRequeueException.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestRequeueException::processItem()
- 11.x core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestRequeueException.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestRequeueException::processItem()
File
-
core/
modules/ system/ tests/ modules/ cron_queue_test/ src/ Plugin/ QueueWorker/ CronQueueTestRequeueException.php, line 20
Class
- CronQueueTestRequeueException
- Plugin annotation @QueueWorker( id = "cron_queue_test_requeue_exception", title = @Translation("RequeueException test"), cron = {"time" = 60} )
Namespace
Drupal\cron_queue_test\Plugin\QueueWorkerCode
public function processItem($data) {
$state = \Drupal::state();
if (!$state->get('cron_queue_test_requeue_exception')) {
$state->set('cron_queue_test_requeue_exception', 1);
throw new RequeueException('I am not done yet!');
}
else {
$state->set('cron_queue_test_requeue_exception', 2);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.