function CronQueueTestException::processItem

Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestException.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestException::processItem()
  2. 10 core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestException.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestException::processItem()
  3. 11.x core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestException.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestException::processItem()

File

core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestException.php, line 19

Class

CronQueueTestException
Plugin annotation @QueueWorker( id = "cron_queue_test_exception", title = @Translation("Exception test"), cron = {"time" = 1} )

Namespace

Drupal\cron_queue_test\Plugin\QueueWorker

Code

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);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.