class CronQueueTestException

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
  2. 10 core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestException.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestException
  3. 11.x core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestException.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestException

Plugin annotation


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

Hierarchy

Expanded class hierarchy of CronQueueTestException

File

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

Namespace

Drupal\cron_queue_test\Plugin\QueueWorker
View source
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);
        }
    }

}

Members

Title Sort descending Modifiers Object type Summary
CronQueueTestException::processItem public function

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